Files
wren/test/closure/use_global_in_function.wren
T

7 lines
133 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
2014-04-02 19:41:53 -07:00
new Fn {
2014-01-05 12:27:12 -08:00
IO.print(global) // expect: global
2013-12-04 07:43:50 -08:00
}.call