Skip to content

Instantly share code, notes, and snippets.

@catatsuy
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save catatsuy/be55a99375d5bcfc968e to your computer and use it in GitHub Desktop.
Save catatsuy/be55a99375d5bcfc968e to your computer and use it in GitHub Desktop.
use strict;
use warnings;
use Acme::2zicon;
my $nizicon = Acme::2zicon->new;
my @members = $nizicon->sort('age', 1);
for my $member (@members) {
print $member->name_ja." ".$member->age.
"歳\n".$member->introduction."\n\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment