Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

Startup time in any interpreted language is very quickly simply proportional to the amount of code loaded.

   time python -c ''                               # 0.024s
   time python -c 'import argparse'                # 0.036s
   time python -c 'import argparse, json'          # 0.040s
   time python -c 'import argparse, json, httplib' # 0.065s


Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: