Files
wren/test/nonlocal/null_before_defined.wren
T

4 lines
79 B
Plaintext
Raw Normal View History

IO.print(Foo) // expect: null
var Foo = "value"
IO.print(Foo) // expect: value