Help for this page

Select Code to Download


  1. or download this
    $ perl -wE'$a = [1,2,3]; say "@${a}";'
    1 2 3
    
  2. or download this
    @$h{a}
    => @{$h}{a}
    ...
    @{ $h{a} }
    => @{$h}{a}
    => An array dereference that expects $h{a} to return an array ref.