Is the slow performance of programming languages 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
11:40 UTC
Read the original article
Hit count: 392
Here's how I see it.
There's machine code and it's all that the computers needs in order to run something. The computers don't care about programming languages. It doesn't matter to them if the machine code comes from Perl, Python or PHP. Programming languages exist to 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 just because they do more things that otherwise programmers would have to do and by doing these things, they do better what they are supposed to do - serve programmers.
So is the slower performance (at runtime) of a programming language really a bad thing?
© Programmers or respective owner