|
NAMEAcme::MetaSyntactic::List - Base class for simple lists of names SYNOPSIS package Acme::MetaSyntactic::beatles;
use Acme::MetaSyntactic::List;
our @ISA = ( Acme::MetaSyntactic::List );
__PACKAGE__->init();
1;
=head1 NAME
Acme::MetaSyntactic::beatles - The fab four theme
=head1 DESCRIPTION
Ladies and gentlemen, I<The Beatles>. I<(hysteric cries)>
=cut
__DATA__
# names
john paul
george ringo
DESCRIPTION"Acme::MetaSyntactic::List" is the base class for all themes that are meant to return a random excerpt from a predefined list. METHODAcme::MetaSyntactic::List offers several methods, so that the subclasses are easy to write (see full example in SYNOPSIS):
AUTHORPhilippe 'BooK' Bruhat, "<book@cpan.org>" COPYRIGHTCopyright 2005-2012 Philippe 'BooK' Bruhat, All Rights Reserved. LICENSEThis program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
|