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

=head1 Tricksy
__END__
=cut

use Indented;

sub greetings:
    print "Hello " . shift;

no Indented;

sub farewell {
    print "Goodbye " . shift;
}

1;

__END__

=head1 NAME

t::Pre - Hello and Goodbye

=cut