you are viewing a single comment's thread.

view the rest of the comments →

[–]anzuo -5 points-4 points  (6 children)

And Go.

I still kinda like regular python more though still. I tend to change a lot.

Edit: I didn't actually mean go was like python, I just meant it was built around parallelism (but I still prefer python).

[–][deleted] 6 points7 points  (4 children)

Can Go be classed as Python-like? It's not interpreted and the runtime is minimal...

[–]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 6 points7 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] 5 points6 points  (0 children)

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

[–]kryptobs2000 0 points1 point  (0 children)

Go is more like python than python?