The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Test8;

sub new
{
    my $instance;
	return $instance;
}

sub hello 
{
    return "hello";
}

1;
__END__