Haskell:创建字符串列表和<字符串和字符串列表>对的记录字符串和字符串列表>
如何在 Haskell 中创建字符串列表和一对的记录
我尝试了以下方法
对于创建字符串列表的记录
data testList = test [string]
deriving (Show, Eq)
当我运行它时,它给出了以下错误
不是数据构造函数:`test'
用于创建一对记录
data testList = test (String,[string])
deriving (Show, Eq)
它也会给出相同的错误
不是数据构造函数:`test'
任何人都可以向我解释问题和解决方案。
How to create a record of list of string and, pair of in Haskell
I tried the following
For creating a record of list of string
data testList = test [string]
deriving (Show, Eq)
When I run it, it gives me the following error
Not a data constructor: `test'
For creating a record of pair of
data testList = test (String,[string])
deriving (Show, Eq)
It also gives the same error
Not a data constructor: `test'
can anyone explain me the problem and solution for it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
数据类型的首字母必须是大写字母。
wikipedia/haskell/type 声明
The first letter of data types must be a capital letter.
wikipedia/haskell/type declarations