|
|
|
|
|
by ohwp
4596 days ago
|
|
Benchmarking is very hard because even the same language could show different results. For example: for($i = 0; $i < count($list); $i++)
vs $count = count($list);
for($i = 0; $i < $count; $i++)
Most of the time benchmarks prove how capable a programmer is, not the speed of the language used. |
|
That is, one could argue that a good language is one that lets developers ignore trivial changes like this without hurting performance.