in reply to Print element using array reference

In the first expression, what you're doing is actually accessing an array slice.

@friends = qw(gobi guru muthu kumar sabari naga bal); print @friends[ 2, 4 ]; # prints muthu and sabari

If a list is accessed in scalar context, Perl will return the last element.

Replies are listed 'Best First'.
Re^2: Print element using array reference
by gobisankar (Acolyte) on Apr 21, 2010 at 16:44 UTC
    Thanks friends