Files
mgmt/examples/lang/join.mcl
James Shubin 3d0660559e examples: lang: Add a join example
Good reminder that a lot of the golang stdlib functions are available.
2024-09-09 14:54:45 -04:00

10 lines
133 B
Plaintext

import "fmt"
import "golang/strings"
$l = ["a", "b", "c",]
$joined = strings.join($l, ", ")
print "debug" {
msg => "${joined}",
}