Help for this page

Select Code to Download


  1. or download this
    perl -we "@array = qw/one two three/; print @array[1], $/;"
    
  2. or download this
    Scalar value @array[1] better written as $array[1] at -e line 1.
    
  3. or download this
    print $array_a->[0];