Skip to content

Instantly share code, notes, and snippets.

@oogali
Created October 20, 2016 12:46
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 oogali/f52f2812310d79ad4d08ae9a1804bcfe to your computer and use it in GitHub Desktop.
Save oogali/f52f2812310d79ad4d08ae9a1804bcfe to your computer and use it in GitHub Desktop.
Super simple ASCII spinner
#!/usr/bin/env ruby
segments = %w( / - \\ | )
20.times do
segments.each do |segment|
print segment
sleep 0.1
print "\r"
end
end
puts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment