I am trying to write program in ruby which needs to make a pause before returning text.
In python you can do this by importing time and then using time.sleep(x). How would one go about doing this in ruby.
Ex. in Python
print ("you say hello")
time.sleep(5)
print ("I say goodbye")