1
0
mirror of https://github.com/DataDog/go-profiler-notes.git synced 2025-07-12 23:50:13 +02:00
Files
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)
}