-- main.mcl -- import "fmt" $map = {0 => "a",} forkv $key, $val in $map { func fn() { "hello " + $val } $s = fn() test [$s,] {} } -- OUTPUT -- Vertex: test[hello a]