github.com/switchupcb/yaegi@v0.10.2/_test/time4.go (about) 1 package main 2 3 import ( 4 "fmt" 5 "time" 6 ) 7 8 func main() { 9 var m time.Month 10 m = 9 11 fmt.Println(m) 12 } 13 14 // Output: 15 // September