Skip to content

Instantly share code, notes, and snippets.

@labe
Last active December 17, 2015 20:29
Show Gist options
  • Save labe/5668168 to your computer and use it in GitHub Desktop.
Save labe/5668168 to your computer and use it in GitHub Desktop.
print "\e[H"
print "\e[2J"
print "\e[5m"
2.times do
puts "
### #### #### # # # ### ##### # # ##### #####
# # # # # # # # # # # # # #
# # #### #### # # # # # # #### # #
# # # # # # # # # # # # # # #
### #### # # #### # # ### # # # ##### #"
sleep(1.9)
print "\e[0m"
print "\e[H"
print "\e[2J"
end
spacing = ""
4.times do
print "\e[H"
print "\e[2J"
print spacing
puts "
#################################
## ############ ############
########### ##########
######### ########
"
spacing << "\n"
sleep(0.8)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment