Help for this page

Select Code to Download


  1. or download this
    warn "panic!\n" if $x->{limit} < 0 if $DEBUG;
    
  2. or download this
    #! /usr/bin/perl
    
    ...
       warn "debug message" if DEBUG && "something";
       warn "trace message" if DEBUG & TRACE;
    }