-- main.mcl -- import "fmt" # function statement $stradd = func($x) { $x + "there" } $x1 = $stradd("hey") test $x1 {} -- OUTPUT -- Vertex: test[heythere]