zlox/samples/ch25_closures6.lox

22 lines
235 B
Plaintext
Raw Permalink Normal View History

2024-08-29 10:54:03 +02:00
var globalSet;
var globalGet;
fun main() {
var a = "initial";
fun set() {
a = "updated";
}
fun get() {
print a;
}
globalSet = set;
globalGet = get;
}
main();
globalSet();
globalGet();