标签: haskell
我定义了函数NewLine
NewLine
NewLine :: String -> String NewLine (x:xs)=if (x=='\n') then xs else NewLine xs
它给我一个无效的类型签名错误,但我不明白为什么。
答案 0 :(得分:25)
函数不能以Haskell中的大写字母开头。大写字母表示数据构造函数。