Help for this page

Select Code to Download


  1. or download this
    my $debug;
    BEGIN { GetOptions('debug|d' => \$debug) or die }
    use constant DEBUG => $ENV{DEBUG} || $debug;
    
  2. or download this
    use Thing;
    my $obj = Thing->new;
    
  3. or download this
    use constant DEBUG => &main::DEBUG;