mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 12:22:42 +00:00
11 lines
108 B
Lox
11 lines
108 B
Lox
|
|
var f;
|
||
|
|
|
||
|
|
fun foo(param) {
|
||
|
|
fun f_() {
|
||
|
|
print param;
|
||
|
|
}
|
||
|
|
f = f_;
|
||
|
|
}
|
||
|
|
foo("param");
|
||
|
|
|
||
|
|
f(); // expect: param
|