|
|
|
|
|
by knz42
4672 days ago
|
|
"Just a whole bunch of inefficiencies in the implementation." That's a common misconception: what makes a language "faster" than another is not only more or less optimizations in the compiler or efficiencies in the runtime. There are language features that just kill performance. The typical culprits, in descending order of cost: - dynamic typing - dynamic dispatch (virtual methods) - mandated bounds checking - existence of an "eval" function - mandated introspection |
|