DEV Community

Michele Caci
Michele Caci

Posted on

2

TIL: Go range on time.Tick for regular tasks

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
}
Enter fullscreen mode Exit fullscreen mode

Here's a playground example in action: https://play.golang.org/p/RUdgii5EMx7

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs