lama_byterun/regression/test071.expr
2019-12-29 01:12:40 +03:00

9 lines
No EOL
104 B
Text

fun f (x) {
fun g () {return x}
fun h () {return g}
return g
}
local n = read ();
write (f(5)())