oppbench.go 131 B

1234567891011
  1. package main
  2. import (
  3. "fmt"
  4. "os"
  5. )
  6. func main() {
  7. fmt.Println("Run as 'go test -bench=.' to run the benchmarks")
  8. os.Exit(1)
  9. }