package main import ( "fmt" "time" ) func main() { var m time.Month m = 9 fmt.Println(m) } // Output: // September