Help for this page

Select Code to Download


  1. or download this
    use Getopt::Long;
    my $_debug;
    ...
    die "Debug Level is required" unless defined $_debug;
    warn "Debug Level is $_debug\n";
    
  2. or download this
    use Getopt::Long;
    my $_debug = 0;
    ...
        } ) or exit 1;
    
    warn "Debug Level is $_debug\n";