Make progress on compiler posts

This commit is contained in:
2019-10-26 20:30:29 -07:00
parent 6dd52ac182
commit dbc09f7ff0
26 changed files with 1403 additions and 0 deletions

8
07/examples/bad3.txt Normal file
View File

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