Add negative example
This commit is contained in:
parent
44c4c9e601
commit
717c1b370f
@ -12,5 +12,8 @@ Did you just notice the braces? They are \textbf{very} important! So, currying i
|
|||||||
\begin{haskellcode}
|
\begin{haskellcode}
|
||||||
f :: Int -> Int -> Int
|
f :: Int -> Int -> Int
|
||||||
f :: Int -> (Int -> Int)
|
f :: Int -> (Int -> Int)
|
||||||
|
|
||||||
|
-- but this is NOT the same
|
||||||
|
f :: (Int -> Int) -> Int
|
||||||
\end{haskellcode}
|
\end{haskellcode}
|
||||||
On the other hand function application is \emph{left}-associative, so \hinline{f 3 2} is just a shorthand of \hinline{(f 3) 2}. Makes sense?
|
On the other hand function application is \emph{left}-associative, so \hinline{f 3 2} is just a shorthand of \hinline{(f 3) 2}. Makes sense?
|
Loading…
Reference in New Issue
Block a user