Add negative example

这个提交包含在:
Julian Ospald 2015-04-21 00:24:24 +02:00
父节点 44c4c9e601
当前提交 717c1b370f
找不到此签名对应的密钥
GPG 密钥 ID: 220CD1C5BDEED020
共有 1 个文件被更改,包括 3 次插入0 次删除

查看文件

@ -12,5 +12,8 @@ Did you just notice the braces? They are \textbf{very} important! So, currying i
\begin{haskellcode}
f :: Int -> Int -> Int
f :: Int -> (Int -> Int)
-- but this is NOT the same
f :: (Int -> Int) -> Int
\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?