mcl, docs: Use the less ambiguous form of the import

Update the style guide as well!
This commit is contained in:
James Shubin
2025-06-05 22:45:26 -04:00
parent e5ec13f592
commit 75bafa4fd3
11 changed files with 36 additions and 28 deletions

View File

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