Help for this page

Select Code to Download


  1. or download this
    # Define a global variable, the compatible way
    use vars qw($foo);
    ...
    # Define a "lexical" variable
    my $foo;
    
  2. or download this
    
    undef $/;             # Enables whole file mode
    ...
      blah
    }
    
  3. or download this
    {
       undef local $/;
    ...
          blah
       }
    }