KaiChen1008
Results
1
comments of
KaiChen1008
the following code works for me ``` func printTime(ts []time.Time) { for _, t := range ts { fmt.Println(t) } } func main() { loc, _ := time.LoadLocation("Local") curr :=...