Help for this page

Select Code to Download


  1. or download this
    sub say {
        print "$_\n" for @_;
    ...
    }
    
    sub debug_lvl { map $DEBUG{$_} = 1, @_ }
    
  2. or download this
    debug "this...", LVL1;
    ...
    debug "that ..", LVL3;
    
  3. or download this
    DEBUG and debug "text..", LVL1 ;