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

10 lines
170 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
2015-09-15 07:46:09 -07:00
System.print(a) // expect: c
System.print(b) // expect: c
System.print(c) // expect: c