The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# $Id$
package t::P15;
use strict;

sub DEBUG () { 0 }

sub new
{
    my( $package, %args ) = @_;
    DEBUG and warn "new";
    return bless { %args }, $package;
}

sub say
{
    my( $self, $string ) = @_;
    DEBUG and warn "$self->say";
    print "$string\n";
    return 'response';
}


1;
__END__