mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
12 lines
No EOL
110 B
Text
12 lines
No EOL
110 B
Text
fun plus (x) {
|
|
fun f (y) {
|
|
x + y
|
|
}
|
|
|
|
f
|
|
}
|
|
|
|
var x = read ();
|
|
|
|
write (plus(5)(6));
|
|
write (plus(8)(10)) |