|
|
|
|
|
by ts4z
1656 days ago
|
|
I disagree. Go provides a low-runtime way of writing programs, like C, without having to resort to managing memory and threads super carefully. No VM, no interpreter, fairly straightforward to imagine what the compiler is doing. You can do the same work in Java but you can't statically link the JVM. You can sort of do these in Python, but the compiler story is murky at best, and the language isn't as type safe. |
|
That's not quite accurate; there is a runtime, it just gets statically linked into the binary instead of needing to be externally installed