Just Another Victim...: > I would like to know why the following code doesn't work: > > > # This should be 1 followed by 13 zeroes... > range = 0..10000000000000 > > # This should be 1 followed by 12 zeroes... > range.step(1000000000000){|i| puts i} > fyi, to help with counting zeros, you can use an underscore like a comma: range = 0..10_000_000_000_000 -- Posted via http://www.ruby-forum.com/.