mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
12 lines
No EOL
112 B
Text
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)) |