package My::Module; use strict; our $VERSION = '1.00'; =head1 NAME My::Module - An example module =head1 SYNOPSIS use My::Module; my $object = My::Module->new(); print $object->as_string; =head1 DESCRIPTION This module does not really exist, it was made for the sole purpose of demonstrating how POD works. =head2 Methods =over 12 =item C Returns a new My::Module object. =cut sub new { ... } =item C Returns a stringified representation of the object. This is mainly for debugging purposes. =cut sub as_string { ... } =back =head1 AUTHOR Juerd - =head1 SEE ALSO L, L =cut