Files
wren/test/variable/local_without_initializer.wren
2013-12-22 18:47:58 -08:00

5 lines
42 B
Plaintext

{
var a
IO.write(a) // expect: null
}