Files
moxa/_test/time4.go
2018-11-19 10:27:54 +01:00

16 lines
123 B
Go

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