Variables and Printf
Declare variables with var, or use := inside functions to declare and infer the type at once:
var count int = 3
name := "Gopher" // string
ratio := 0.75 // float64
fmt.Printf formats values: %d int, %s string, %.2f float, %v anything. Add \n yourself.
Try it
Print:
Gopher was born in 2009