Ruby on Rails[Ruby] 迴圈及疊代本頁導覽[Ruby] 迴圈及疊代(Loop and Iterator)迴圈(Loop) while while 後面 do 可省略 counter = 1while counter < 11 do puts counter counter += 1end until until 後面 do 可省略 counter = 1until counter > 10 do puts counter # Add code to update 'counter' here! counter += 1end times: 限制執行次數(建議使用)