Looping with for and the Ruby Looping Methods

From Techotopia
Revision as of 16:21, 26 November 2007 by Neil (Talk | contribs) (New page: 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...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

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.