zlox/samples/ch25_closures4.lox

8 lines
101 B
Plaintext
Raw Permalink Normal View History

2024-08-29 10:54:03 +02:00
fun outer() {
var x = "outside";
fun inner() {
print x;
}
inner();
}
outer();