Help for this page

Select Code to Download


  1. or download this
    --- New                --- Internally
    ¥hr                ==  $hr
    ...
    keys ¥hr{k1}{k2}   ==  keys %{ $hr->{k1}{k2} }
    print €ar[1]       ==  print $ar->[1]
    print @€ar[1]      ==  print @{ $ar->[1] }
    
  2. or download this
     
    sub foo {
      return ( [], {} ) 
    }
    my (€ar,¥hr) = foo();