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

14 lines
207 B
Plaintext

-- main.mcl --
include c1("t1")
include c1("t2")
class c1($a) {
test "${a}" {
stringptr => $foo,
}
}
$foo = "hey"
-- OUTPUT --
Vertex: const: str("hey")
Vertex: const: str("t1")
Vertex: const: str("t2")