Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    print "ChildClass:\n";
    my $c=ChildClass->new();
    $c->run();
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    print "FormerChildClass:\n";
    my $c=FormerChildClass->new();
    $c->run();