Created
October 31, 2013 17:24
-
-
Save note103/7253611 to your computer and use it in GitHub Desktop.
Perl入学式in東京vol.3の復習問題「score.pl」より 第5問『JSON風Dumper』。
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
#!/usr/bin/env perl | |
use strict; | |
use warnings; | |
my $papix = { | |
name => 'papix', | |
affiliation => 'namba.pm', | |
perl => 60, | |
python => 50, | |
ruby => 50, | |
php => 80, | |
binary => 30, | |
sum => 270, | |
}; | |
my $boolfool = { | |
name => 'boolfool', | |
affiliation => 'namba.pm', | |
perl => 40, | |
python => 10, | |
ruby => 20, | |
php => 30, | |
binary => 10, | |
sum => 110, | |
}; | |
my $moznion = { | |
name => 'moznion', | |
affiliation => 'hachioji.pm', | |
perl => 100, | |
python => 70, | |
ruby => 80, | |
php => 50, | |
binary => 50, | |
sum => 350, | |
}; | |
my $binarian = { | |
name => 'binarian', | |
affiliation => 'hachioji.pm', | |
perl => 10, | |
python => 11, | |
ruby => 1, | |
php => 100, | |
binary => 100, | |
}; | |
my $uzulla = { | |
name => 'uzulla', | |
affiliation => 'hachioji.pm', | |
perl => 1, | |
python => 0.01, | |
ruby => 0.5, | |
php => 4, | |
binary => 0.01, | |
}; | |
#ここから回答。 | |
my @people = ($papix, $boolfool, $moznion, $binarian, $uzulla); | |
print "[\n"; | |
for my $people (@people) { | |
print " {\n "; | |
for my $key (keys $people) { | |
print " \"$key\":$people->{$key}\n "; | |
} | |
print "} \n"; | |
} | |
print "]\n"; |
関連URL:
- https://gist.github.com/note103/7241971 (設問3)
- https://gist.github.com/note103/7253246 (設問4)
- http://d.hatena.ne.jp/note103/20131030/1383151683 (設問3について書いたブログ)
- https://github.com/note103/perl_entrance/tree/master/2013_3 (第1問〜第5問 at GitHub)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
設問:URL