12 lines
144 B
Plaintext
12 lines
144 B
Plaintext
-- main.mcl --
|
|
# chained vars
|
|
test "t" {
|
|
int64ptr => $c,
|
|
}
|
|
$c = $b
|
|
$b = $a
|
|
$a = 42
|
|
-- OUTPUT --
|
|
Vertex: const: int(42)
|
|
Vertex: const: str("t")
|