oppbench.go 131 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
package main

import (
	"fmt"
	"os"
)

func main() {
	fmt.Println("Run as 'go test -bench=.' to run the benchmarks")
	os.Exit(1)
}