Skip to content

Instantly share code, notes, and snippets.

@mcrisc
Created January 12, 2011 18:42
Show Gist options
  • Save mcrisc/776629 to your computer and use it in GitHub Desktop.
Save mcrisc/776629 to your computer and use it in GitHub Desktop.
#coding: utf-8
from time import sleep
print
i = 0
while True:
print "Installing Clipper 5.2...", "|/-\\"[i], "\r",
i = (i + 1) % 4
sleep 0.15
i = 0
while true
print "Installing Clipper 5.2..."
print "|/-\\"[i]
print "\r"
i = (i +1) % 4
sleep 0.1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment