1
0
mirror of https://github.com/golang/go synced 2024-11-19 03:44:40 -07:00
go/refactor/eg/testdata/B1.golden

18 lines
255 B
Plaintext
Raw Normal View History

// +build ignore
package B1
import "time"
var startup = time.Now()
func example() time.Duration {
before := time.Now()
time.Sleep(1)
return time.Since(before)
}
func msSinceStartup() int64 {
return int64(time.Since(startup) / time.Millisecond)
}