我不确定我的代码有什么问题,但是当我尝试运行它时,我得到了
Couldn't match type `Integer' with `Int'
我正在使用 GHCi。我想创建一个基本程序,它将遍历商店并给我所有客户的姓名,这样我就可以进行搜索以找出他们租用的物品(图书馆)。有没有更好的方法来获取名称?
这是我的代码:
type Name = String
type Customer = (Name,Int)
type shop = [Customer]
shop = [cust1, cust2]
cust1 = ("Neil", 311)
cust2 = ("Fred", 0)
getName :: (String,Int) -> Name
getName (a,b) = a