Skip to content

Instantly share code, notes, and snippets.

@Telltak
Created May 21, 2011 08:35
Show Gist options
  • Save Telltak/984364 to your computer and use it in GitHub Desktop.
Save Telltak/984364 to your computer and use it in GitHub Desktop.
A pointless script.
from sys import argv
if len(argv)>1 and argv[1].isdigit():
r = ''
for i in range(int(argv[1])):
r+='r'
print "oh hai thu{0}".format(r)
else:
print "Please supply a positive integer as an argument"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment