lama_byterun/regression/test093.lama
Dmitry Boulytchev 61296c51e7 Massive renaming
2020-02-16 00:21:15 +03:00

12 lines
No EOL
112 B
Text

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