Today I learned how to simply repeat a task over time with regularity in Go:
for range time.Tick(1 * time.Second) {
fmt.Println("Hello, playground") // any task here
}
Here's a playground example in action: https://play.golang.org/p/RUdgii5EMx7
Top comments (0)