Will emit Fn instead of λ on all platforms.

This commit is contained in:
Erik Svedäng 2020-05-11 13:31:00 +02:00
parent baf833b481
commit ac2ad0c760

View File

@ -84,7 +84,7 @@ data SumTyCase = SumTyCase { caseName :: String
fnOrLambda =
case platform of
Windows -> "Fn"
_ -> "λ"
_ -> "Fn" -- "λ"
instance Show Ty where
show IntTy = "Int"