Merge branch 'post-historic' of https://github.com/dboulytchev/compiler-workout-private into post-historic

This commit is contained in:
kverty 2019-09-10 00:49:43 +03:00
commit 686e3ff9d7
5 changed files with 18 additions and 5 deletions

View file

@ -0,0 +1,2 @@
0
3

8
regression/test055.expr Normal file
View file

@ -0,0 +1,8 @@
fun len(l) {
case l of
_ : xs -> return len(xs) + 1
|{} -> return 0
esac
}
write(len({}));
write(len({1, 2, 3}))

0
regression/test055.input Normal file
View file