• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

lib/App/H20-Aug-2006-547240

t/H20-Aug-2006-2916

CHANGESH A D11-Aug-2006203 85

MANIFESTH A D11-Aug-200676 98

META.ymlH A D20-Aug-2006342 1210

Makefile.PLH A D03-May-2022727 2312

READMEH A D11-Aug-2006876 3725

TODOH A D11-Aug-2006350 117

README

1######################################################################
2## File: $Id: README 3442 2005-05-14 14:14:01Z spadkins $
3######################################################################
4
51. What is the App-Trace distribution?
6
7The App-Trace distribution is a module which facilitates putting
8debug statements into your program.  These can normally be turned off,
9but can easily be turned on and controlled through command line
10options.
11
122. What are the features?
13
14FEATURES OF App::Trace
15
16 o ...
17   ...
18
193. It's easy to use.
20
21  #!/usr/bin/perl
22  use App::Trace;
23  use App::Options;
24  # now use the %App::options hash
25  print "yada yada\n" if ($App::options{verbose});
26
274. How do I install it?
28
29To install this module, cd to the directory that contains this README
30file and type the following (as usual).
31
32   perl Makefile.PL
33   make
34   make test
35   make install
36
37