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
Unlike in java, where the bytcode is created and interpreted at the execution time, go creates an executable file that is dependent on the machine being used,like in c, c++.