Name: Anonymous 2011-12-03 19:29
hm so i can use () to make infix things as prefix functions
and backticks to make functions infix
but then...
1 + 2
=> 3
(+) 1 2
=> 3and backticks to make functions infix
take 2 [1,2,3,4,5]
=> [1,2]
2 `take` [1,2,3,4,5]
=> [1,2]but then...
1 `(+)` 2
<hint>:1:4: parse error on input `('