The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package t::Object::Animal::JackRabbit;

BEGIN {
    require t::Object::Animal;
    @t::Object::Animal::JackRabbit::ISA = 't::Object::Animal';
}

use Class::InsideOut qw( property id );

# superclass is handling new()

property speed => my %speed, { privacy => "public" };

1;