我对 Haskell 完全陌生,并尝试按照讲义中的脚本进行操作。我创建了一个名为 Lecture.hs 的文件
root (a, b, c) = ((-b -r)/e, (-b + r)/e))
where d = b*b - 4*a*c
r = sqrt d
e = 2*a
当我加载这个文件拥抱它时
ERROR "lecture.hs":3 - Syntax error in input (unexpected `=')
当我将它加载到 ghci 时,它显示
[1 of 1] Compiling Main ( lecture.hs, interpreted )
lecture.hs:3:14: parse error on input `='
Failed, modules loaded: none.
请帮帮我。谢谢!