Help for this page

Select Code to Download


  1. or download this
    my $num  = $recFono->field_as_text('102');
    my $type = $recFono->field_as_text('104');
    ...
    if ($num && $type) {
        something();
    }
    
  2. or download this
    sub myor {
       $_[0] or $_[1];
    ...
    if (myor( ..., ...)) {
    
    }