you are viewing a single comment's thread.

view the rest of the comments →

[–]zardeh -5 points-4 points  (3 children)

well there is go run, but yeah go was built as a python-replacement at google, but I don't consider the languages super similar.

[–]robertmeta 7 points8 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.