Writing Our First Program
Let’s learn the Go language functions, packages, and some important formatting and coding rules.
We'll cover the following...
Hello World!
The following is the Go version of the Hello World! program. Let’s name the following code hw.go
and try it:
Press + to interact
package mainimport ("fmt")func main() {fmt.Println("Hello World!")}
Each Go source code begins with a package
declaration. In this case, the name of the package is main
, which has a special meaning in Go. The import
keyword allows us to include functionality from existing packages. In our case, we only need some of the functionality of the fmt
package that belongs to the standard Go library. Packages that are not part ...