Help for this page

Select Code to Download


  1. or download this
    #! perl -slw
    use strict;
    use My::Types;
    
    my $typeA = new TypeA;
    
  2. or download this
    package TypeA;
    
    *AUTOLOAD = \&My::Type::AUTOLOAD;
    
  3. or download this
    ...
    use My::Types;
    
    my $typeA = new My::Types::TypeA;