13 lines
229 B
Plaintext
13 lines
229 B
Plaintext
-- main.mcl --
|
|
# this should be okay, because var is shadowed
|
|
$x = "hello"
|
|
if true {
|
|
$x = "world" # shadowed
|
|
test $x {}
|
|
}
|
|
-- OUTPUT --
|
|
Edge: str("world") -> var(x) # var:x
|
|
Vertex: bool(true)
|
|
Vertex: str("world")
|
|
Vertex: var(x)
|