-- main.mcl -- # simple function definition func greeting($w) { "hello " + $w } $out = greeting("world") test $out {} -- OUTPUT -- Vertex: test[hello world]