Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use Bar;
    
    ...
    }
    
    1;
    
  2. or download this
    package Bar;
    use Foo;
    
    ...
    my $foo = Foo->new();
    
    1;
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    use warnings;
    
    use Foo;