Files
mgmt/examples/lang/join.mcl
James Shubin 75bafa4fd3 mcl, docs: Use the less ambiguous form of the import
Update the style guide as well!
2025-06-05 22:47:38 -04:00

10 lines
158 B
Plaintext

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