Carp-Indeed version 0.04
========================

Carp::Indeed can be used to make a script complain loudly
with stack traces when warn()ing or die()ing.

  perl -MCarp::Indeed script.pl

This is a rant on the Acme::JavaTrace module where
the author (Sbastien Aperghis-Tramoni) gave us some 
pearls of wisdom like

  <buzzword>This module tries to improves the Perl programmer 
  experience by porting the Java paradigm to print stack traces, 
  which is more professional than Perl's way. </buzzword>

and

  Please note that even the professionnal indentation present 
  in the Java environment is included in the trace. 

Perl has Carp which is a module as old as Perl 5. It has
an option to print errors (from the perspective of caller) 
with stack backtrace. With a few lines of codes, this module
illustrates how to make warn() and die() noisy as well.

INSTALLATION

To install this module type the following:

   perl Makefile.PL
   make
   make test
   make install

DEPENDENCIES

This module requires these other modules and libraries:

  Carp

but that is a core Perl module. 

COPYRIGHT AND LICENCE

Copyright (C) 2005 by Ferreira

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


