logoalt Hacker News

TudorAndreiyesterday at 1:47 PM2 repliesview on HN

Are you comparing the startup time of an interpreted language with the startup time of a compiled language? or you mean that `time python hello.py` > `( time gcc -O2 -o hello hello.c ) && ( time ./hello )` ?


Replies

randomtoastyesterday at 1:54 PM

I'm referring to the startup time as benchmarked in the following manner: https://github.com/bdrung/startup-time

maccardyesterday at 1:59 PM

Here's the thing - I don't really care if its' because the interpreter has to start up, or there's a remote http call, or we scan the disks for integrity - the end user experience on every run is slower.