DEV Community

Discussion on: Learning Ruby: From Zero to Hero

Collapse
 
rodrigomiranda profile image
Rodrigo P. Miranda

Great article!
There is a small mistake in For looping example compared to While. In your example result is printing from 1 to 9 because the range was defined to exclude number 10, the correct one is 1..10 instead of 1...10.

Collapse
 
teekay profile image
TK

That one was a tricky one! Thanks for the feedback. I've just updated it :)