Help for this page

Select Code to Download


  1. or download this
    
    $ cat conf.pl
    ...
    
    __END__
    
  2. or download this
    
    $ cat ONE.pm 
    ...
    }
    1;
    
  3. or download this
    
    $ cat TWO.pm 
    ...
    }
    1;
    
  4. or download this
    $ cat 1137798.pl
    #!/usr/bin/perl -w
    ...
    
    __END__
    
  5. or download this
    
    $ perl 1137798.pl
    bar
    Use of uninitialized value in print at 1137798.pl line 8.
    
  6. or download this
    
    $ cat ONE.pm 
    ...
    }
    1;
    
  7. or download this
    
    $ cat TWO.pm
    ...
      return $conf{'baz'};
    }
    1;
    
  8. or download this
    
    $ perl 1137798.pl
    bar
    quux
    
  9. or download this
    
    $ cat conf.ini 
    ...
    baz=quux
    less=more
    
  10. or download this
    
    $ cat 1137798-2.pl
    ...
    
    __END__
    
  11. or download this
    $ perl 1137798-2.pl
    bar
    quux