Files
wren/test/assignment/local.wren
T

11 lines
180 B
Plaintext
Raw Normal View History

2014-04-02 19:41:53 -07:00
new Fn {
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
2013-11-13 07:10:52 -08:00
}.call