Rubyでwhile文を使って繰り返し(ループ)処理を実行する
while文を使用して、繰り返し(ループ)処理を実行します。
while_loop.rb
i = 0
while i < 5 do
  p i
  i = i + 1
end

      
実行結果
% ruby while_loop.rb
0
1
2
3
4