Help for this page

Select Code to Download


  1. or download this
    my %a = (
      a => 1,
      b => 2,
    ...
    );
    
    @a{ keys %b } = values %b;
    
  2. or download this
    %a = (
      a => 1,
      b => 4,
    ...
      d => 8,
      f => 12,
    );