The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Text;
use Pony::Object 'Text::Base';
  
  sub setText : Public
    {
      my $this = shift;
      $this->text = shift;
    }
  
1;