Created
May 17, 2024 04:27
-
-
Save Nova840/394327f6c0f72dc8466c2b2b2bc876da 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
def slow_type(text, interval = 0.005) | |
text.chars.each do |character| | |
print character | |
sleep(interval) | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment