Help for this page

Select Code to Download


  1. or download this
    my %hash = map {$_ => ['id_1']} @array;
    my $hashref = \%hash;
    
  2. or download this
    my $hashref = { map {$_ => ['id_1']} @array };