Help for this page

Select Code to Download


  1. or download this
    new[A]
    new[B]
    
  2. or download this
    new[A]
    Can't locate object method "new" via package "B" at test.pl line 6.
    
  3. or download this
    #! /usr/bin/perl 
    use strict;
    ...
    package B;
    use vars qw(@ISA);
    @ISA = qw/A/;