Files
wren/test/language/assignment/local.wren
2015-11-27 21:17:34 -08:00

11 lines
192 B
Plaintext

fn () {
var a = "before"
System.print(a) // expect: before
a = "after"
System.print(a) // expect: after
System.print(a = "arg") // expect: arg
System.print(a) // expect: arg
}()