rlox/interpreter/tests/lox/assignment/associativity.lox
2024-09-01 19:15:55 +02:00

9 lines
153 B
Lox

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