Help for this page

Select Code to Download


  1. or download this
    # --- user's code
    package MyPackg; 
    ...
    sub func {
       print "DEBUGGING" if DBG; # won't be compiled
    }
    
  2. or download this
    {
      package MyPackg; 
      use constant DBG => 0;
    }