Help for this page

Select Code to Download


  1. or download this
    if ($DEBUG) { print STDERR "Debug: some value"; }
    [download]
    ...
    is pretty clear, but if we re-write that one line, it becomes more of 
    +a conversation with the maintainer:
    
    print STDERR "Debug: some value" if $DEBUG;
    
  2. or download this
    if ($DEBUG) {
        print STDERR "Debug: some value";
        # some tempory line to debug our debuger ...
        # some other temp line ...
    }