GHC gives me a parse error on input \~ if I try to put a tilde on the pattern of a lambda expression like I can do with named functions
let step = \~(x,s) -> run (f x) s -- Parse Error
let step ~(x, s) = run (f x) s -- Works fine
|
GHC gives me a
|
||||
|
|
|
You have to add a space between the lambda and the tilde
The source of the confusion is because
|
|||||||
|