mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-08 07:48:47 +00:00
11 lines
147 B
Text
11 lines
147 B
Text
|
|
fun f (a) {
|
||
|
|
fun g (b) {
|
||
|
|
fun h (c) {
|
||
|
|
return fun (x) {return x + a + b + c}
|
||
|
|
}
|
||
|
|
return h (b)
|
||
|
|
}
|
||
|
|
return g (a)
|
||
|
|
}
|
||
|
|
|
||
|
|
write (f(10)(5))
|