modern-compiler-ml/tiger/testcases/test37.tig
jmug 33d8bac511 Add the tiger source code bundle from the book site
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2024-12-18 15:18:45 -08:00

8 lines
179 B
Text

/* redeclaration of variable; this is legal, there are two different
variables with the same name. The second one hides the first. */
let
var a := 0
var a := " "
in
0
end