Help for this page

Select Code to Download


  1. or download this
    { package Foo; sub hello { ... } }
    { package Bar; our @ISA = 'Foo'; }
    ...
    Bar->hello('world');   # Foo::hello('Bar', 'world')
    Foo::hello('world');   # Foo::hello('world')
    Bar::hello('world');   # hello not found in Bar