The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
package Acme::MorningMusume::SayashiRiho;

use strict;
use warnings;

use base qw(Acme::MorningMusume::Base);

our $VERSION = '0.20';

sub info {
    return (
        first_name_ja  => '里保',
        family_name_ja => '鞘師',
        first_name_en  => 'Riho',
        family_name_en => 'Sayashi',
        nick           => [qw(やっしー)],
        birthday       => $_[0]->_datetime_from_date('1998-05-28'),
        blood_type     => 'AB',
        hometown       => '広島県',
        emoticon       => ['ノリ*´ー´リ', 'ノノs‘ _‘)'],
        class          => 9,
        graduate_date  => $_[0]->_datetime_from_date('2015-12-31'),
    );
}

1;