gobyexample/048-elapsed.go
2012-09-20 22:09:22 -07:00

10 lines
136 B
Go

package main
import ("time"; "fmt")
func main() {
start := time.Now()
time.Sleep(3 * time.Second)
fmt.Println(time.Since(start))
}