Created
May 17, 2024 04:27
-
-
Save Nova840/af7f7ce575d592f88812eb6169d75860 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_relative 'colors' | |
$haha = "________¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶__________ | |
______¶¶¶¶¶¶_____________¶¶¶¶¶¶________ | |
_____¶¶¶¶¶_________________¶¶¶¶¶¶______ | |
____¶¶¶¶_____________________¶¶¶¶¶_____ | |
___¶¶¶¶_______________________¶¶¶¶¶____ | |
__¶¶¶¶_____¶¶¶¶__________________¶¶¶___ | |
__¶¶¶_____¶¶¶¶¶¶______¶¶¶¶¶¶_____¶¶¶¶__ | |
_¶¶¶¶_____¶¶¶¶¶¶______¶¶¶¶¶¶______¶¶¶¶_ | |
_¶¶¶_______¶¶¶¶___________________¶¶¶¶_ | |
_¶¶¶______________________________¶¶¶¶_ | |
_¶¶¶______________________________¶¶¶¶_ | |
_¶¶¶______________________________¶¶¶¶_ | |
_¶¶¶_____¶¶¶______________¶¶¶_____¶¶¶¶_ | |
_¶¶¶¶_____¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶______¶¶¶¶_ | |
__¶¶¶____________¶¶¶¶¶¶¶¶¶________¶¶¶¶_ | |
__¶¶¶¶_____________¶¶¶¶¶¶¶________¶¶¶__ | |
___¶¶¶¶_____________¶¶¶¶¶¶______¶¶¶¶¶__ | |
____¶¶¶¶_____________¶¶¶¶_____¶¶¶¶¶____ | |
_____¶¶¶¶¶_________________¶¶¶¶¶¶______ | |
______¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶________ | |
________¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶__________" | |
def rainbow_loop(text, interval = 0.5) | |
while true | |
system 'clear' | |
puts random_rainbow(text) | |
sleep(interval) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment