Why do you need programs that need runtime support?

He said that the Golang is a compiled language, but what does it mean, compiled? If the golang application is compiled into machine code, why can't I just distribute the binary (of course, to the appropriate arch and platform) instead of go installstuff?

+4
source share
1 answer

After compiling the binary file, you can distribute it to machines with the same architecture. go install, go run,etc. just needed to compile.

+9
source

Source: https://habr.com/ru/post/1536516/


All Articles