1
0
mirror of https://github.com/DataDog/go-profiler-notes.git synced 2025-07-15 23:54:16 +02:00
Files
go-profiler-notes/examples/guide/main.go
2021-09-08 11:25:41 +02:00

13 lines
140 B
Go

package main
import (
"time"
)
func main() {
start := time.Now()
for time.Since(start) < time.Second {
}
//time.Sleep(time.Second)
}