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

15 lines
297 B
Plaintext

-- main.mcl --
# duplicate resource
# these two are allowed because they are compatible
pkg "cowsay" {
state => "installed",
}
pkg "cowsay" {
state => "newest",
}
-- OUTPUT --
Vertex: const: str("cowsay")
Vertex: const: str("cowsay")
Vertex: const: str("installed")
Vertex: const: str("newest")