lama_byterun/regression/test061.lama

12 lines
124 B
Text
Raw Normal View History

2019-09-24 01:12:04 +03:00
fun plus (x) {
fun f (y) {
return x + y
}
return f
}
2019-10-16 21:07:27 +03:00
local x = read ();
2019-09-24 01:12:04 +03:00
write (plus(5)(6));
write (plus(8)(10))