The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
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