Alt::Base(3pm) User Contributed Perl Documentation Alt::Base(3pm)

Alt::Base - Base class for alternate module

version 0.02

 # in your Alt/Foo/Bar/phrase.pm:
 package Alt::Foo::Bar::phrase;
 use base qw(Alt::Base);
 1;
 # customize options:
 package Alt::Foo::Bar::phrase;
 use base qw(Alt::Base);
 our %ALT = (check => 0, ...);
 1;

The Alt::Base class provides common functionalities for an alternate module. For more information about the Alt concept, please refer to Alt.

Alt::Base defines an "import()" routine which checks for options in %ALT. These options are:

Alt

Steven Haryanto <stevenharyanto@gmail.com>

This software is copyright (c) 2012 by Steven Haryanto.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

2022-12-08 perl v5.36.0