-- main.mcl -- import "fmt" func double($x) { $x + $x } test fmt.printf("%d", double(42)) {} test double("hello") {} -- OUTPUT -- Vertex: test[84] Vertex: test[hellohello]