HaskellZhangSong / Introduction_to_Haskell

This is source code of my book.
67 stars 12 forks source link

Chapter12 Stack.hs error #11

Closed boboyada closed 7 years ago

boboyada commented 7 years ago

环境ubuntu kylin linux 16.10 ,ghci 7.10.3 装载Stack.hs时出现了错误,可能是版本变化? GHCi, version 7.10.3: http://www.haskell.org/ghc/ :? for help Prelude> :l Stack.hs [1 of 1] Compiling Main ( Stack.hs, interpreted )

Stack.hs:5:17: parse error on input ‘:’ Failed, modules loaded: none.

eccstartup commented 7 years ago

\x:xs 要改成 \(x:xs)

boboyada commented 7 years ago

OK