gitlab.com/ethan.reesor/vscode-notebooks/yaegi@v0.0.0-20220417214422-5c573557938e/_test/time10.go (about) 1 package main 2 3 import "time" 4 5 var UnixTime func(int64, int64) time.Time 6 7 func main() { 8 UnixTime = time.Unix 9 println(UnixTime(1e9, 0).In(time.UTC).Minute()) 10 } 11 12 // Output: 13 // 46