blob: a9b2cdd56977f540ba3567a86f94bffec75d5faa [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 golang.org/x/tools/cmd/present
`
func main() {
fmt.Print(moved)
os.Exit(1)
}