2023-12-14から1日間の記事一覧

whileと loopの動作の違いを実感した

こんにちは! 今回はwhile trueとloop doの動作の違いを実感したことについてまとめます。 whileの場合 count = 0 while true count += 1 text = 'aaa' break if count > 2 end puts text 結果 'aaa' loopの場合 count = 0 loop do count += 1 text = 'aaa' …