Created
April 11, 2012 17:49
-
-
Save Shinpeim/2360881 to your computer and use it in GitHub Desktop.
きもい.pl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use strict; | |
use warnings; | |
use Data::Dumper; | |
my @arr = qw/ran miki suu dia/; | |
my %hash = map {$_ => "hoge", "piyo"} @arr; | |
warn Dumper \%hash; | |
# 結果 | |
# +{ | |
# 'piyo' => 'dia', | |
# 'suu' => 'hoge', | |
# 'ran' => 'hoge', | |
# 'hoge' => 'piyo' | |
# }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment