Help for this page

Select Code to Download


  1. or download this
       $a=\@foo;
    
  2. or download this
            @{$a};       # Same as @foo
            ${$a}[1];    # Same as $foo[1]
            @{$a}[0..2]; # Same as @foo[0..2]