Skip to content

Instantly share code, notes, and snippets.

@emergent
Created April 20, 2018 16:07
Show Gist options
  • Save emergent/f05b90b46a80f5264d7512869e708f24 to your computer and use it in GitHub Desktop.
Save emergent/f05b90b46a80f5264d7512869e708f24 to your computer and use it in GitHub Desktop.
ターミナル上でぐるぐるするやつ
#! /usr/bin/env ruby
def rotate interval
while true
"|/-\\|/-\\".chars.each {|c| print "\r#{c}"; sleep interval}
end
end
rotate 0.1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment