Commit bf73f02f authored by Taylor Gerring's avatar Taylor Gerring

Remove common.go

parent 360c66c6
package common
import (
"fmt"
"time"
)
func Bench(pre string, cb func()) {
start := time.Now()
cb()
fmt.Println(pre, ": took:", time.Since(start))
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment