Files
wren/test/language/nonlocal/use_in_function.wren
T

6 lines
82 B
Plaintext
Raw Normal View History

var Global = "global"
2013-12-04 07:43:50 -08:00
2015-07-10 09:18:22 -07:00
Fn.new {
2015-09-15 07:46:09 -07:00
System.print(Global) // expect: global
2015-02-26 23:08:36 -08:00
}.call()