Help for this page

Select Code to Download


  1. or download this
    if (condition) {
       print "Some string\n";
       print LOG "Some string\n";
       return;
    }
    
  2. or download this
    sub LOGIT {
       my @args = @_;
       print @args, "\n";
       print LOG @args, "\n";
    }
    
  3. or download this
    condition or return LOGIT("some string");