blog-static/code/compiler/13/examples/bad3.txt

9 lines
125 B
Plaintext
Raw Normal View History

2020-09-08 18:38:05 -07:00
data List = { Nil, Cons Int List }
defn head l = {
case l of {
Nil -> { 0 }
Cons x y z -> { x }
}
}