Replies: 1 comment 1 reply
-
You want to replace any backslash to lambda? Aren’t backslashes used for anything else in Haskell? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
lambdas are written as
\
in haskell. ex)\x y -> x + y
is same aslambda x, y = x + y
in python.it'd be a nice addition for haskell to render it as
λ
, sayλ x y -> x + y
Beta Was this translation helpful? Give feedback.
All reactions