Golang packages

From wikinotes
Revision as of 19:28, 23 May 2022 by Will (talk | contribs) (Created page with "= Imports = <blockquote> <syntaxhighlight lang="go"> import ( "fmt" "golang.org/x/example/stringutil" ) </syntaxhighlight> </blockquote><!-- Imports -->")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Imports

import (
    "fmt"
    "golang.org/x/example/stringutil"
)