标签: haskell syntax
ghci编译器在以下程序中给出了输入->的解析错误。
->
Type Point = (Int,Int) Type Picture = Point -> Bool
那有什么不对吗?
答案 0 :(得分:3)
定义类型同义词的语法是type,小写t。
type
t