Files
wren/test/closure/use_global_in_function.wren
T

7 lines
129 B
Plaintext
Raw Normal View History

2013-12-04 07:43:50 -08:00
var global = "global"
// TODO: Forward reference to global declared after use.
2013-12-04 07:43:50 -08:00
fn {
2014-01-05 12:27:12 -08:00
IO.print(global) // expect: global
2013-12-04 07:43:50 -08:00
}.call