crafting-interpreters/lox/name_redefinition.lox

5 lines
53 B
Text
Raw Permalink Normal View History

2025-05-25 10:52:20 +02:00
fun bad() {
var a = "first";
var a = "second";
}