Guest User

Untitled

a guest
Jan 30th, 2018
332
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var/list/numbers_to_use = list()
  2. proc/initialize_shit()
  3. for(var/i in 1 to 1000000)
  4. numbers_to_use += rand(1,100000)
  5.  
  6. proc/old_loop_method()
  7. for(var/i in numbers_to_use)
  8. var/fuck = i
  9.  
  10. proc/new_loop_method()
  11. for(var/i in 1 to numbers_to_use.len)
  12. var/fuck = numbers_to_use[i]
Add Comment
Please, Sign In to add comment