I noticed as I was playing around with Haskell today that it is possible to do something like
($ 4) (> 3)
which yields True. What is going on here? It'd be great to have some intuition.
My guess? It looks like the ($ 4) is an incomplete function application, but where I'm confused is that $ is an infix operator, so shouldn't it look like (4 $)? This doesn't compile, so clearly not, which leads me to believe that I don't really understand what's going on. The (>3) term makes sense to me, because if you supply something like (\x -> x 4) (>3), you end up with the same result.
(`op` e)is syntactic sugar for(\x -> x `op` e)and(e `op`)for(\x -> e `op` x), where`op`is operator (either normal one such as+,-etc, or function in backticks). – Vitus May 7 '12 at 9:10(f $)as "call the function f" ; read($ 4)as "call with 4 as argument". "Call with 4" "is greater than 3?" is "Is 4 greater than 3?".($ 4) (> 3) == (> 3) 4 == 4 > 3 == (4 >) 3. – Will Ness Jun 20 '12 at 6:51