Help for this page

Select Code to Download


  1. or download this
        if( $_ eq "--end foo--\n"){
        # . . .
        }
    
  2. or download this
    my $interesting_bit;
    {
        # maybe open here . . .
    ...
        $interesting_bit = <FILE>;
        # . . . and close here
    }
    
  3. or download this
    my $interesting_bit;
    {
        # maybe open here . . .
    ...
        }
        # . . . and close
    }