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