Help for this page

Select Code to Download


  1. or download this
    $ perl -wle'my @a = qw( a b c ); my @i = 2; print @a[@i]'
    c
    
  2. or download this
    $ perl -wle'my @a = qw( a b c ); my @i = 2; print $a[@i]'
    b