を使用しているときに、ユーザーが 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
スクリプトを一時停止する代わりに何を使用すればよいですか?
お時間をいただきありがとうございます