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