Sign in
go
/
tools
/
074820e17b39fd2279bcad5e07f9734aac976428
/
.
/
refactor
/
eg
/
testdata
/
B1.go
blob: 1e09c905d27c80c38118bc939fcb14468db73bcb [
file
] [
log
] [
blame
]
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)
}