On Thu, Jan 29, 2009 at 11:24 PM, Dominik Honnef <dominikho / gmx.net> wrote:
> one solution would be:
> for thing in things[0..9]
> ...
> end
maybe
things.first( 10 ).each do |thing|
   ...
end
is a little bit more idiomatic.
Cheers
Robert