Stephen Potenza
Member since Dec 1, 2010
- Profile: /members/7394-stephen-potenza.htm
- Comments: 1
Recent Blog Comments By Stephen Potenza
-
Seven Languages In Seven Weeks: Ruby - Day 2
Posted on Dec 1, 2010 at 11:29 PM
Here's another possible solution for the first example (just using each): >> a = (1..16).to_a >> a.each {|i| print "#{i} "; puts if i % 4 == 0} 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16... read more »