zlox/samples/ch25_closures5.lox

10 lines
132 B
Plaintext
Raw Permalink Normal View History

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