Slide 2
Slide 2 text
Packages
Package names correspond to a folder of the same name.
package weather
Import strings contain the package path and name.
import “my/weather" // $GOPATH/src/my/weather!
Qualify with the package name.
weather.Precipitation()!
A different name can be chosen.
import rain "my/weather"
rain.Precipitation()