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

10 lines
170 B
Plaintext
Raw Normal View History

var a = "a"
var b = "b"
var c = "c"
// Assignment is right-associative.
a = b = c
System.print(a) // expect: c
System.print(b) // expect: c
System.print(c) // expect: c