haskell“无效类型签名错误”

时间:2010-10-01 18:02:45

标签: haskell

我定义了函数NewLine

NewLine :: String -> String
NewLine (x:xs)=if (x=='\n') then xs else NewLine xs

它给我一个无效的类型签名错误,但我不明白为什么。

1 个答案:

答案 0 :(得分:25)

函数不能以Haskell中的大写字母开头。大写字母表示数据构造函数。