aboutsummaryrefslogtreecommitdiff
path: root/content/playground/time.go
blob: 987620a7c7a461342719364c3d402752133d9d2a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package main

import (
	"fmt"
	"time"
)

func main() {
	stop := time.After(3 * time.Second)
	tick := time.NewTicker(1 * time.Second)
	defer tick.Stop()
	for {
		select {
		case <-tick.C:
			fmt.Println(time.Now())
		case <-stop:
			return
		}
	}
}