Acme-Buckaroo

 view release on metacpan or  search on metacpan

Buckaroo.pm  view on Meta::CPAN

our %EXPORT_TAGS = ( 'all' => [ ] );
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
our @EXPORT = ();
our $VERSION = '1.02';

###############################################################################
# IF YOU WANT TO TURN ON DEBUG MODE
# (and thus see lots of logging lines that explain how things are happening
# as they happen), set debug_mode = 1.
# If you do, you'll need either:
#   (1) Perl 5.6 (to get Data::Dumper by default), or
#   (2) to have Data::Dumper already installed.
# Data::Dumper is a very, very handy module, but it wasn't in the default Perl
# installation until (I think) Perl 5.6.  Perl 5.005 usually don't have it.
# Look on CPAN.ORG for Data::Dumper if you don't have it.
###############################################################################
my $debug_mode = 0;
print("starting script...\n") if $debug_mode;

if ($debug_mode)
{
    use Data::Dumper;
}
else
{
#    sub Dumper { return(""); }
}

my $header = "Buckaroo Banzai Across The Eigth Dimension " x 2 . "\n";

###############################################################################
# this translation array is just for fun, but also for debugging so you can see

README  view on Meta::CPAN

       make
       make test
       make install

DEPENDENCIES

    This module requires NO other modules or libraries.
    If you go into the source of Buckaroo.pm and look, you'll see
    there is a debug mode.  If you turn this on, you'll be able to
    watch it as it works.  However, debug mode requires the module
    Data::Dumper, a fantastically useful module that you should
    have by default in Perl installations > 5.6.


DEDICATION

    I'd like to dedicate this module to Mr. Damian Conway, who has bettered
    Perl and the lives of those in the Perl-using community by vast amounts,
    and continues to do good work.  Someday I'd like to buy him a beer.

    The book, by the way, is "Object Oriented Perl", by Damian Conway



( run in 0.242 second using v1.01-cache-2.11-cpan-4d50c553e7e )