Help for this page

Select Code to Download


  1. or download this
    # Foo.pm
    package Foo;
    ...
    Bar->bar;
    
    1;
    
  2. or download this
    # Bar.pm
    package Bar;
    ...
    sub bar { Foo->foo }
    
    1;
    
  3. or download this
    $ ls
    Foo.pm Bar.pm
    $ perl Foo.pm
    Foo::foo was called