Files
wren/test/nonlocal/null_before_defined.wren
T

4 lines
79 B
Plaintext
Raw Normal View History

2015-01-14 23:08:25 -08:00
IO.print(Foo) // expect: null
var Foo = "value"
IO.print(Foo) // expect: value