Skip to content

Instantly share code, notes, and snippets.

@felipeelias
Created April 11, 2011 14:06
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 felipeelias/913571 to your computer and use it in GitHub Desktop.
Save felipeelias/913571 to your computer and use it in GitHub Desktop.
Prints 1 to 10 clearing the screen (like a progress bar)
(1..10).each do |i|
print "\r"
print "#{i}"
sleep 0.1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment