blog-static/code/compiler/13/examples/errors/pattern_too_few_args.txt

9 lines
121 B
Plaintext
Raw Normal View History

2020-09-10 14:02:19 -07:00
data List = { Nil, Cons Int List }
defn head l = {
case l of {
Nil -> { 0 }
Cons x -> { x }
}
}