-- main.mcl -- import "fmt" # this should be a function as a value, iow a lambda $answer = func() { "the answer is 42" } $out = $answer() test $out {} -- OUTPUT -- Vertex: test[the answer is 42]