1234567891011121314
#!/usr/bin/perluse strict;use warnings;use Data::Dumper;my @ids = qw( 01 02 03);my @names = ('Heiz','Otto','Karl');my %hash;@hash{@ids} = @names;print Dumper \%hash;