Help for this page

Select Code to Download


  1. or download this
    print STDERR join("\x1E", @list),"\x1E\n";
    
  2. or download this
    sub dbg {
        return unless $DEBUG;
    ...
            print STDERR $str unless $QUIET;
        }
    }
    
  3. or download this
    #!/usr/bin/perl
    use Private::Debug 'dbg';
    ...
    
    dbg("Hello there", "You fool");
    dbg(':DUMP:', "ARGV:", \@ARGV);