Help for this page

Select Code to Download


  1. or download this
    open my $datafile ... 
    LINE:
    ...
        next LINE if ( $line =~ m{\A \s* #}xms;
        process $line;
    }
    
  2. or download this
    if ( option_A( $line ) ) {
       $retval = do_this_complicated_thing( $line );
    ...
        $retval = 42;
    }
    return $retval;