A dead simple stopwatch
, with a sprinkle of clock
.
Stopwatch it's easy, offers a globally available stop watch instance initialised at package load.
Clock it's easy too, but bare bone. Is not very precise.
Needed a simple stopwatch
. Then I didn't know where to put clock
.
package main
import (
"fmt"
"github.com/thetechpanda/stopwatch"
)
func main() {
// stopwatch
fmt.Printf("time: %s\n", stopwatch.Elapsed().String())
// clock
clock := stopwatch.NewClock(time.Second)
for i := range 1000 {
go func() {
<-clock.Tick()
fmt.Printf("hi from %d\n", i)
}()
}
// enjoy the flood
}
go get github.com/thetechpanda/stopwatch
- Clock benchmarks (how do I even benchmark it?)
Contributions are welcome and very much appreciated!
Feel free to open an issue or submit a pull request.
The stopwatch
package is released under the MIT License. See the LICENSE file for details.