$ mkdir -p /tmp/scratchpad/repo $ cd /tmp/scratchpad/repo
$ git init -q $ git remote add origin https://github.com/my/repo
$ cat <<EOF > hello.go package main import ( "fmt" "rsc.io/quote" ) func main() { fmt.Println(quote.Hello()) } EOF
$ go build -o hello
$ ./hello
Hello, world.