crafting-interpreters/lox/name_redefinition.lox

4 lines
53 B
Text

fun bad() {
var a = "first";
var a = "second";
}