######################################################################
# Mymod.pm
######################################################################
# Perl Power! - Michael Schilli 1998
######################################################################

#!/usr/bin/perl -w

package Mymod;

=head1 NAME

Mymod - brief description

=head1 SYNOPSIS

    use Mymod;

    Mymod::func1($par1);
    Mymod::func2($par1, $par2);

=head1 DESCRIPTION

Extensive description of C<Mymod> 

=head1 METHODS

=head2 func1

Here comes the function description

    $ret = func1($par1);

=cut

######################################################################
# Perl code starts
######################################################################
sub func1 {
    my($par1) = @_;

    # ...
}

=head2 func2

Here comes the function description

    $ret = func2($par1, $par2);

=cut

######################################################################
# Perl code starts again
######################################################################
sub func2 {
    my($par1, $par2) = @_;

    # ...
}

=head1 AUTHOR

Michael Schilli I<michael@perlmeister.com>

