The commands go build and go install compile the files into binaries. Does go run compile or interpret the file? I couldn\'t find expl
go build
go install
go run
It's more or less the equivalent of running go build X.go -o /tmp/random-tmp-folder/exe && /tmp/random-tmp-folder/exe
go build X.go -o /tmp/random-tmp-folder/exe && /tmp/random-tmp-folder/exe