Skip to content

Instantly share code, notes, and snippets.

@Nova840
Created May 17, 2024 04:27
Show Gist options
  • Save Nova840/394327f6c0f72dc8466c2b2b2bc876da to your computer and use it in GitHub Desktop.
Save Nova840/394327f6c0f72dc8466c2b2b2bc876da to your computer and use it in GitHub Desktop.
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