|
|
|
|
|
by SoftwareMaven
5002 days ago
|
|
You are wrong. A JITted environment can take advantage of knowing about the current run of the system. As a result, it can do things like unroll loops and inline function calls. Yes, you could do the same thing in C code, but the resulting executable would be unreasonably large because you would have to unroll every loop and inline every function. Pypy has show itself faster than C in some cases as well[1]. 1. http://morepypy.blogspot.com/2011/08/pypy-is-faster-than-c-a... |
|