我对这种语言很陌生,我在记事本中写了它,并在ghci中使用了它
import Data.Char
ord 'a'
在ghci中,它给了我这个错误
dayBefore.hs:2:1: error:
Parse error: module header, import declaration
or top-level declaration expected.
当我用ghci编写此代码时,它仍然有效?
答案 0 :(得分:4)
错误消息是说ord 'a'
不是
它基本上不知道如何处理评估ord 'a'
的结果。编写foo = ord 'a'
是有效的,然后在ghci
中编写foo
并获得评估结果。