mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-05 22:38:44 +00:00
9 lines
86 B
Text
9 lines
86 B
Text
|
|
fun f (x) {
|
||
|
|
fun g () { x}
|
||
|
|
fun h () { g}
|
||
|
|
g
|
||
|
|
}
|
||
|
|
|
||
|
|
local n = read ();
|
||
|
|
|
||
|
|
write (f(5)())
|