15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
-- main.mcl --
|
|
# variable shadowing inner
|
|
# this should be okay, because var is shadowed
|
|
$x = "hello"
|
|
if true {
|
|
$x = "world" # shadowed
|
|
test "t" {
|
|
stringptr => $x,
|
|
}
|
|
}
|
|
-- OUTPUT --
|
|
Vertex: const: bool(true)
|
|
Vertex: const: str("t")
|
|
Vertex: const: str("world")
|