Help for this page

Select Code to Download


  1. or download this
    if( defined( my $r = foo() )) {
    }
    else {
    }
    
  2. or download this
    open IN, $filename or die "Cannot open $filename for input: $!\n";
    close IN;
    
  3. or download this
    open IN, $filename or die "Cannot open $filename for input: $!\n";
    while( <IN> ) {
    
    }
    close IN;
    
  4. or download this
    open IN, $filename or die "Cannot open $filename for input: $!\n";
    while( <IN> ) {
        next if //;
    }
    close IN;