Created
January 4, 2013 15:40
-
-
Save catatsuy/4453548 to your computer and use it in GitHub Desktop.
This is a sample of Acme::MorningMusume
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 FindBin::libs; | |
use Acme::MorningMusume; | |
my $musume = Acme::MorningMusume->new; | |
my @active_members = $musume->members('active'); | |
print $_->family_name_ja . $_->first_name_ja . "\n" for @active_members; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment