Help for this page

Select Code to Download


  1. or download this
    my $self = OO->new( $cat );
    {
      my $inner_self = $ARGV[0] eq 'Fido' ? OO->new( $dog ) : $self;
      say $inner_self->species();
    }
    
  2. or download this
    my $self = OO->new( $ARGV[0] eq 'Fido' ? $dog : $cat );