Looping with for and the Ruby Looping Methods
From Techotopia
Revision as of 16:22, 26 November 2007 by Neil (Talk | contribs) (Looping in Ruby - for and the loop Method moved to Looping with for and the Ruby Looping Methods)
In the previous chapter we looked at Ruby While and Until Loops as a way to repeat a task until a particular expression evaluated to true or false. In this chapter we will look at some other mechanisms for looping in a Ruby program, specifically for loops and a number of built-in methods designed for looping, specifically the loop, upto, downto and times.