github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/time1_native.gno (about) 1 package main 2 3 import ( 4 "fmt" 5 "time" 6 ) 7 8 func main() { 9 t := time.Date(2009, time.November, 10, 23, 4, 5, 0, time.UTC) 10 m := t.Minute() 11 fmt.Println(t, m) 12 } 13 14 // Output: 15 // 2009-11-10 23:04:05 +0000 UTC 4