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

9 lines
125 B
Plaintext

data List = { Nil, Cons Int List }
defn head l = {
case l of {
Nil -> { 0 }
Cons x y z -> { x }
}
}