Help for this page

Select Code to Download


  1. or download this
    my (@y,%y);
    
    ...
    
    say "keys \%y: ", join ",",keys %y;
    say "keys \@y: ", join ",",keys @y;
    
  2. or download this
    keys %y: 3
    keys @y: 0,1,2,3