Help for this page

Select Code to Download


  1. or download this
    package Foo;
    require Bar;
    ...
    # more stuff...
    
    1;
    
  2. or download this
    package Bar;
    
    ...
    # more stuff...
    
    1;
    
  3. or download this
    #!/usr/bin/perl
    
    use Foo qw(blorf);
    
  4. or download this
    $ perl -MFoo=blorflydick -e 1
    Bar: got 'blorflydick' from Foo