lama_byterun/regression/test071.lama
Dmitry Boulytchev 61296c51e7 Massive renaming
2020-02-16 00:21:15 +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)())