Packages in Go - Part 2
Imports
The import statement tells the compiler where to look on disk to find the package you want to import.
import "fmt"
To import more than one package, you need to wrap the import statements in an import block.
import (
"fmt"
"strings"
)...
nanacoder.hashnode.dev3 min read