Help for this page

Select Code to Download


  1. or download this
    sub cond (&$$) {
      (my $check, local $_, my $default) = @_;
      $check->() ? $_ : $default;
    }
    
  2. or download this
    print cond { fileno($_} } $fh, 'undef';