Files
wren/test/assignment/global.wren
T

9 lines
152 B
Plaintext
Raw Normal View History

2013-11-13 07:10:52 -08:00
var a = "before"
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: before
2013-11-13 07:10:52 -08:00
a = "after"
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: after
2013-11-13 07:10:52 -08:00
2014-01-05 12:27:12 -08:00
IO.print(a = "arg") // expect: arg
IO.print(a) // expect: arg