Haskell缩进错误?

时间:2012-01-15 09:35:02

标签: haskell functional-programming

Indentation problem

我附上代码,缩进,任何人都知道问题出在哪里?

错误代码:

zo.hs:7:9: parse error (possibly incorrect indentation)

1 个答案:

答案 0 :(得分:6)

该行

[...] = show x ++   ++ show [...]

包含多个语法错误。特别是,(++)是一个二元运算符,而不是用{。}}包围的。{/ p>

尝试

show foo

此外,

[...] = show x ++ show treeB ++ show treeJ

未定义:

show Leaf