Skip to content

Instantly share code, notes, and snippets.

@KennethWilke
Last active January 20, 2016 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save KennethWilke/7679649c3370975468ac to your computer and use it in GitHub Desktop.
Save KennethWilke/7679649c3370975468ac to your computer and use it in GitHub Desktop.
import sys
times_to_run = int(sys.argv[1])
times_ran = 0
for i in range(0, times_to_run):
times_ran += 1
print "Did it {0} times!".format(times_ran)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment