标签: ruby timer while-loop
我想执行10分钟的循环。但我不想睡觉。最好的方法是什么?
10
答案 0 :(得分:4)
starttime = Time.now while Time.now < starttime + 10*60 # ... end