rlox/interpreter/tests/lox/assignment/local.lox

10 lines
158 B
Lox
Raw Permalink Normal View History

2024-09-01 19:15:55 +02:00
{
var a = "before";
print a; // expect: before
a = "after";
print a; // expect: after
print a = "arg"; // expect: arg
print a; // expect: arg
}