Files
wren/test/closure/use_global_in_function.wren
T

7 lines
134 B
Plaintext
Raw Normal View History

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