Files
wren/test/closure/use_global_in_function.wren
2013-12-21 19:25:09 -08:00

7 lines
129 B
Plaintext

var global = "global"
// TODO: Forward reference to global declared after use.
fn {
IO.write(global) // expect: global
}.call