鉴于以下情况,
module Foo where
main = do
let foo = case 0 of
0 -> 4
return ()
GHC 坚持认为我有语法错误:
Make.hs:5:5: parse error (possibly incorrect indentation)
为什么?我已经使用 Haskell 有一段时间了,它看起来对我来说是正确的。
鉴于以下情况,
module Foo where
main = do
let foo = case 0 of
0 -> 4
return ()
GHC 坚持认为我有语法错误:
Make.hs:5:5: parse error (possibly incorrect indentation)
为什么?我已经使用 Haskell 有一段时间了,它看起来对我来说是正确的。