You've already forked go-profiler-notes
mirror of
https://github.com/DataDog/go-profiler-notes.git
synced 2025-07-12 23:50:13 +02:00
13 lines
140 B
Go
13 lines
140 B
Go
package main
|
|
|
|
import (
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
start := time.Now()
|
|
for time.Since(start) < time.Second {
|
|
}
|
|
//time.Sleep(time.Second)
|
|
}
|