Help for this page

Select Code to Download


  1. or download this
        package Foo;
        use strict;
        use fields qw(_foo);
        ...
    
  2. or download this
        package Bar;
        use strict;
        use base 'Foo';
        use fields qw(_bar _baz);
        ...
    
  3. or download this
        package Foo;
        use strict;
        use fields qw(unused _foo);
        ...