zlox/samples/ch25_closures4.lox

8 lines
101 B
Plaintext

fun outer() {
var x = "outside";
fun inner() {
print x;
}
inner();
}
outer();