-- main.mcl -- $foo = "bad1" func bar($foo) { "hello " + $foo # shadows parent var } test [bar("world"),] {} -- OUTPUT -- Vertex: test[hello world]