12 lines
136 B
Go
12 lines
136 B
Go
|
// +build !go1.5
|
||
|
|
||
|
package speed
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
)
|
||
|
|
||
|
func Run() {
|
||
|
fmt.Printf("Compile with Go 1.5 or higher to run the benchmarks\n")
|
||
|
}
|