FSF in SM

This commit is contained in:
Dmitry Boulytchev 2019-10-13 05:29:06 +03:00
parent 77473d10c5
commit 2bfebc93f8
4 changed files with 54 additions and 39 deletions

View file

@ -0,0 +1 @@
> 35

11
regression/test066.expr Normal file
View file

@ -0,0 +1,11 @@
fun f (a) {
fun g (b) {
fun h (c) {
return fun (x) {return x + a + b + c}
}
return h (b)
}
return g (a)
}
write (f(10)(5))

1
regression/test066.input Normal file
View file

@ -0,0 +1 @@
5