Guest User

Untitled

a guest
May 26th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. import times
  2.  
  3. proc longRun(i: int) =
  4. if i < 9999999999:
  5. longRun(i + 1)
  6.  
  7. var t = getStartmilsecs()
  8.  
  9. for i in 0 .. 5:
  10. longRun(0)
  11.  
  12. var t1 = getStartmilsecs()
  13.  
  14. echo(t1 - t)
Add Comment
Please, Sign In to add comment