0

我正在尝试用 ruby​​ 编写程序,该程序需要在返回文本之前暂停。
在 python 中,您可以通过导入时间然后使用 time.sleep(x) 来做到这一点。如何在 ruby​​ 中做到这一点。

前任。在 Python 中
print ("you say hello")
time.sleep(5)
print ("I say goodbye")

4

1 回答 1

2

对于您的示例,只需使用

sleep(5)
于 2013-07-02T20:25:56.900 回答