lama_byterun/regression/test061.expr
Dmitry Boulytchev d99588a6db FCF (alpha)
2019-10-16 21:07:27 +03:00

12 lines
No EOL
124 B
Text

fun plus (x) {
fun f (y) {
return x + y
}
return f
}
local x = read ();
write (plus(5)(6));
write (plus(8)(10))