Help for this page

Select Code to Download


  1. or download this
    my $hashref  = { A => 1, B => 2 };
    my $arrayref = [ 1, 2, 3 ];
    
  2. or download this
    print $hashref->{B}; # 2
    print $arrayref->[2]; # 3
    
  3. or download this
    print %$hashref{B}; # 2
    print @$arrayref[2]; # 3