Help for this page

Select Code to Download


  1. or download this
    chomp($out), print "Output: $out\n" if $out;
    
  2. or download this
    if ($out) { chomp($out); print "Output: $out\n"; }
    
  3. or download this
    chomp($out);
    print "Output: ", length($out) ? $out : "[nothing]", "\n";