Is slower performance, of programming languages, really, a bad thing?
Posted
by
Emanuil
on Programmers
See other posts from Programmers
or by Emanuil
Published on 2011-02-22T11:20:35Z
Indexed on
2012/04/03
17:41 UTC
Read the original article
Hit count: 271
Here's how I see it.
There's machine code and it's all that computers needs in order to run something. Computers don't care about programming languages. It doesn't matter to them whether the machine code comes from Perl, Python or PHP. Programming languages don't serve computers. They serve programmers.
Some programming languages run slower than others but that's not necessarily because there is something wrong with them. In many cases, it's because they do more things that programmers would otherwise have to do (i.e. memory management) and by doing these things, they are better in what they are supposed to do - serve programmers.
So, is slower performance, of programming languages, really, a bad thing?
© Programmers or respective owner