Files
mgmt/lang/interpret_test/TestAstFunc1/graph3.txtar
James Shubin 28f5b8331a lang: funcs: structs: Improve naming
These could print nicer for debugging.
2024-12-08 16:24:42 -05:00

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")