From Botched Coyote, 10 Years ago, written in Plain Text.
This paste is a reply to WTF Python... from Bitty Terrapin - view diff
Embed
  1. longneck@mofa ~ $ cat test.c
  2. #include <stdio.h>
  3.  
  4. int main()
  5. {
  6.     const int max = 50 * 1000 * 1000;
  7.     int i;
  8.     for(i = 0; i < max; i++)
  9.         if(1 == 1) {
  10.             i;
  11.         }
  12.     return 0;
  13. }
  14. longneck@mofa ~ $ time ./test
  15.  
  16. real    0m0.220s
  17. user    0m0.216s
  18. sys     0m0.000s
  19. longneck@mofa ~ $ time node test.js
  20. start
  21. end
  22.  
  23. real    0m0.296s
  24. user    0m0.284s
  25. sys     0m0.020s
  26. longneck@mofa ~ $