Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use strict;
    our @ISA = 'Bar';
    ...
    
  2. or download this
    package Foo;
    use strict;
    use vars qw(ISA);
    @ISA = 'Bar';
    ...
    
  3. or download this
    package Foo;
    @ISA = 'Bar';
    use strict;
    ...
    
  4. or download this
    package Foo;
    use strict;
    @Foo::ISA = 'Bar';
    ...
    
  5. or download this
    package Foo;
    use strict;
    use base 'Bar';
    ...