Andrew Johnson <ajohnson / cpan.org> wrote: > > a = %w|help this foo perhaps bar does| > puts a.values_at(-1,1,3,0) Is there any reason this can't be changed to a.at(1,2,3,4)? It'd make for a more consistent feel than specialcasing the one-argument case. martin