in reply to Re^7: Perl list items
in thread Perl list items
So
$ perl -e " use Data::Dump; my $c = [qw/ a b c/]; dd @$c[1,2]; " ("b", "c")
While References quick reference lists this item explicitly (item 2), its somewhat documented in perlreftut/perlref but its not recommended
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^9: Perl list items
by AnomalousMonk (Archbishop) on Jul 10, 2012 at 09:13 UTC | |
by Anonymous Monk on Jul 10, 2012 at 09:24 UTC | |
by AnomalousMonk (Archbishop) on Jul 10, 2012 at 10:36 UTC |