Created
January 14, 2013 13:11
-
-
Save catatsuy/4529959 to your computer and use it in GitHub Desktop.
Dentoo.LT http://blog.catatsuy.org/a/256
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 utf8; | |
use Acme::MorningMusume; | |
my $musume = Acme::MorningMusume->new; | |
my @active_members = $musume->members('active'); | |
my @sorted_by_birthday = $musume->sort('birthday', 0, @active_members); | |
print $_->family_name_ja . $_->first_name_ja . "\n" for @sorted_by_birthday; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment