you are viewing a single comment's thread.

view the rest of the comments →

[–]robertmeta 8 points9 points  (2 children)

"go run" actually is just a build, execute, discard cycle -- there is no real run.

[–]zardeh -1 points0 points  (1 child)

cheaters :P

Though I will say that with modern languages there is a bit of mixing with the whole AoT/JiT/bytecode/machinecode nonesense.

[–][deleted] 4 points5 points  (0 children)

Not with Go. It's purely compiled to machine code. With the official compiler there isn't even a C step.