blob: 217fa158c047cfb3f6145fafd10189e32e418d67 [file] [log] [blame]
package main
import (
"fmt"
"os"
)
const moved = `
The present tool has moved to the go.tools repository.
Please install it from its new location:
go get code.google.com/p/go.tools/cmd/present
`
func main() {
fmt.Print(moved)
os.Exit(1)
}