Files
wren/test/closure/use_global_in_function.wren
T

7 lines
134 B
Plaintext
Raw Normal View History

2013-12-04 07:43:50 -08:00
var global = "global"
// TODO(bob): Forward reference to global declared after use.
fn {
io.write(global) // expect: global
}.call