String NewLine (x:xs)=if (x=='\n') then xs else NewLine xs 它给了我一-6ren">
gpt4 book ai didi

haskell "invalid type signature error"

转载 作者:行者123 更新时间:2023-12-04 13:03:50 26 4
gpt4 key购买 nike

我定义了函数 NewLine

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

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

最佳答案

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

关于 haskell "invalid type signature error",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3841867/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com