我想找到一种方法让我的脚本等到用户点击 ENTER,同时使用if...end
input = 3
if input > 2
puts "input is greater than 2"
gets
puts "this shouldn't appear before I type ENTER"
end
这不起作用,因为我得到
$input is greater than 2
$this shouldn't appear before I type ENTER
我应该用什么代替gets
暂停脚本?
感谢您的时间