Help for this page

Select Code to Download


  1. or download this
    $ cat deb.pl
    #!/usr/bin/perl
    ...
    
    print "debug statment\n" if FOO_DEBUG_MODE;
    print "done!\n";
    
  2. or download this
    $ perl -MO=Deparse deb.pl
    use Getopt::Long;
    ...
    '???';
    print "done!\n";
    deb.pl syntax OK
    
  3. or download this
    $ perl -MO=Deparse deb.pl -debug
    use Getopt::Long;
    ...
    print "debug statment\n";
    print "done!\n";
    deb.pl syntax OK