Help for this page

Select Code to Download


  1. or download this
    my @keys = (1 .. 5);
    my @values = (6 .. 8);
    my %hash;
    @hash{@keys} = @values;
    
  2. or download this
    @hash{@keys} = @values || '';