mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-07 15:28:49 +00:00
10 lines
104 B
Text
10 lines
104 B
Text
|
|
fun plus (x) {
|
||
|
|
fun f (y) {
|
||
|
|
return x + y
|
||
|
|
}
|
||
|
|
|
||
|
|
return f
|
||
|
|
}
|
||
|
|
|
||
|
|
write (plus(5)(6));
|
||
|
|
write (plus(8)(10))
|