|
|
|
|
|
by kamaal
3644 days ago
|
|
>>I know Perl had many efficiencies built in, and was considered quite fast at some point (90s?). There are a lot of threads in Perlmonks that talk in detail about speeding up Perl, related project et al. To be summarizing it. Languages like Perl and Python are slow because they do a lot of work out of the box that languages like C don't. There fore when you talk of talk of translating Python to C, or Perl to C. Essentially what you are talking of is translating all that extra action back into C, which will run as fast as Perl or Python itself. The more you make it easy for the compiler to interpret the faster it can run and vice versa. Python is slow for the very reason its famous, its easy for the programmer. |
|
Enjoy the same powerful features, have JIT and AOT compilers to native code.
It all boils down to how much the language designers care about performance.