02-write-your-first-program/questions/03-run-your-first-program/README.md
go build and go run?go run just compiles a program; whereas go build both compiles and runs it.go run both compiles and runs a program; whereas go build just compiles it. CORRECT1: It's opposite actually.
2:
go runcompiles your program and puts it in a temporary directory. Then it runs the compiled program in there.
go build CORRECT2: There only lives Go source-code files
3: Go only puts your code there when you call
go install.
1: In the compilation step your program cannot print a message. In that stage, it's literally dead.
2: That's right. That's the only time which your program can interact with a computer and instruct it to print a message to the console.
3: Running can only happen after the compile-time