✨
This commit is contained in:
@ -60,7 +60,7 @@ printExp (Let v e1 e2) =
|
||||
printExp (Lambda v body) =
|
||||
parens $ "\\" ++ v ++ " -> " ++ printExp body
|
||||
printExp (Apply x y) =
|
||||
printExp x ++ " (" ++ printExp y ++ ")"
|
||||
parens $ printExp x ++ " " ++ printExp y
|
||||
printExp (TryCatch x y) =
|
||||
parens $ "try " ++ printExp x ++ " catch " ++ printExp y
|
||||
|
||||
|
Reference in New Issue
Block a user