Go: How does go run file.go work
go
Solution
It's more or less the equivalent of running `go build X.go -o /tmp/random-tmp-folder/exe && /tmp/random-tmp-folder/exe`
Problem
The commands `go build` and `go install` compile the files into binaries. Does `go run` compile or interpret the file? I couldn't find explanations online and may have missed it. Appreciate pointers. Thanks!