plugeth/common/common.go
2015-03-22 13:46:38 +01:00

13 lines
156 B
Go

package common
import (
"fmt"
"time"
)
func Bench(pre string, cb func()) {
start := time.Now()
cb()
fmt.Println(pre, ": took:", time.Since(start))
}