Skip to content

Instantly share code, notes, and snippets.

@stefania11
Last active August 29, 2015 14:27
Show Gist options
  • Save stefania11/a1421bddf6d5c4e3f876 to your computer and use it in GitHub Desktop.
Save stefania11/a1421bddf6d5c4e3f876 to your computer and use it in GitHub Desktop.
def loop_images(n = NUMBER_OF_LOOPS)
n.times do
ASCII_IMAGES.each do |i|
clear_screen
puts QUOTE.center(97)
puts i
sleep 0.5
end
end
end
def clear_screen
puts "\e[H\e[2J"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment