如何在 Haskell 中创建字符串列表和一对记录
我尝试了以下
用于创建字符串列表的记录
data testList = test [string]
deriving (Show, Eq)
当我运行它时,它给了我以下错误
不是数据构造函数:`test'
用于创建一对记录
data testList = test (String,[string])
deriving (Show, Eq)
它也给出了同样的错误
不是数据构造函数:`test'
谁能解释我的问题和解决方案。