Help for this page

Select Code to Download


  1. or download this
    package Foo;
    
    ...
    
    set_globals();
    #... more code ...
    
  2. or download this
    ################################
    package Bar;
    ...
    sub new {
        my ( $class, $args ) = @_;
        # etc...
    
  3. or download this
    use strict;
    use Foo::Bar;
    my $obj = Foo::Bar->new;
    
  4. or download this
    use Foo::Bar qw/noLog/;