Help for this page

Select Code to Download


  1. or download this
    do{print, return $_ for "1\nError was $foo\n"} if $foo;
    
  2. or download this
    sub teeprint { print, return $_ for @_ }
    
  3. or download this
    return teeprint "1\nError was $foo\n" if $foo;