1
0
mirror of https://github.com/golang/go synced 2024-11-06 00:16:10 -07:00
go/refactor/eg/testdata/B1.go

18 lines
263 B
Go
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.Now().Sub(before)
}
func msSinceStartup() int64 {
return int64(time.Now().Sub(startup) / time.Millisecond)
}