Hacker News new | ask | show | jobs
by higerordermap 2087 days ago
> Then how come everything is so ridiculously slow these days, despite faster computers?

There is difference between GC overhead, VM overhead, interpreter overhead, and programmer not understanding basic concepts and doing stupid shit.

Go is GC language and tools written in Go often approach C/C++ speeds, despite lacking an optimizer like LLVM and lack of some performance oriented features. Another example is OCaml.