mlox/lox.t/assignment/local.lox

10 lines
158 B
Lox
Raw Permalink Normal View History

2024-08-03 02:44:12 +02:00
{
var a = "before";
print a; // expect: before
a = "after";
print a; // expect: after
print a = "arg"; // expect: arg
print a; // expect: arg
}