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