14 lines
234 B
Plaintext
14 lines
234 B
Plaintext
-- main.mcl --
|
|
# 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("hello")
|
|
Vertex: const: str("t")
|