The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Text::Base;
use Pony::Object abstract => 'Text::Interface';

    protected text => '';
    
    sub getText : Public
        {
            my $this = shift;
            return $this->text;
        }

1;