mirror of
https://github.com/carp-lang/Carp.git
synced 2024-11-05 04:44:12 +03:00
Will emit Fn instead of λ on all platforms.
This commit is contained in:
parent
baf833b481
commit
ac2ad0c760
@ -84,7 +84,7 @@ data SumTyCase = SumTyCase { caseName :: String
|
|||||||
fnOrLambda =
|
fnOrLambda =
|
||||||
case platform of
|
case platform of
|
||||||
Windows -> "Fn"
|
Windows -> "Fn"
|
||||||
_ -> "λ"
|
_ -> "Fn" -- "λ"
|
||||||
|
|
||||||
instance Show Ty where
|
instance Show Ty where
|
||||||
show IntTy = "Int"
|
show IntTy = "Int"
|
||||||
|
Loading…
Reference in New Issue
Block a user