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