Go run

$ go run [build flags] [-exec xprog] package [arguments...]
                    

By default, go run runs the compiled binary directly. If the -exec flag is provided, go run invokes the binary using xprog:

go_run.go