Help for this page
my %hash = map { $_ => "stuff_$_" } qw(asdf qwert zxcv);
my %hash = map { "stuff_$_" => $_ } qw(asdf qwert zxcv);
my %hash = map { {"stuff_$_" => $_} } qw(asdf qwert zxcv);