Go interview questions and answers
1. Explain packages in Go.
Every Go program is made up of packages. The program starts running in package main. This program is using packages with import paths such as fmt.
package main
import (
`fmt`
)
func main() {
fmt.Println("Hello wor...
nanacoder.hashnode.dev2 min read