Files
wren/test/language/assignment/associativity.wren
T

10 lines
158 B
Plaintext
Raw Normal View History

2013-12-04 22:09:31 -08:00
var a = "a"
var b = "b"
var c = "c"
// Assignment is right-associative.
a = b = c
2014-01-05 12:27:12 -08:00
IO.print(a) // expect: c
IO.print(b) // expect: c
IO.print(c) // expect: c