lama_byterun/regression/test071.lama

9 lines
104 B
Text
Raw Normal View History

2019-12-29 01:12:40 +03:00
fun f (x) {
fun g () {return x}
fun h () {return g}
return g
}
local n = read ();
write (f(5)())