mlox/lox.t/variable/duplicate_local.lox

4 lines
108 B
Lox
Raw Normal View History

2024-08-03 02:44:12 +02:00
{
var a = "value";
var a = "other"; // Error at 'a': Already a variable with this name in this scope.
}