Acme-Cow

 view release on metacpan or  search on metacpan

Cow/Frogs.pm  view on Meta::CPAN

package Acme::Cow::Frogs;

use strict;

use Acme::Cow;

@Acme::Cow::Frogs::ISA = qw(Acme::Cow);

my $frogs = <<'EOC'; 
{$balloon}
                                              {$tr}
                                            {$tr}
          oO)-.                       .-(Oo
         /__  _\                     /_  __\
         \  \(  |     ()~()         |  )/  /
          \__|\ |    (-___-)        | /|__/
          '  '--'    ==`-'==        '--'  '
EOC

sub new 
{
    my $proto = shift;
    my $class = ref $proto || $proto;
    my $self = $class->SUPER::new();
    $self->over(46);
    return bless $self, $class;
}

sub as_string
{
    my $self = shift;
    return $self->SUPER::as_string($frogs);
}

1;



( run in 0.755 second using v1.01-cache-2.11-cpan-8f98c5d2c55 )