Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl
    CLASS1.pm
    ...
        return "I come from CLASS1.pm\n";
        };
    return 1;
    
  2. or download this
    #!/usr/local/bin/perl
    #CLASS2.pm
    ...
        my $self = CLASS1->new; #call constructor method of CLASS1
        return bless($self);
        }
    
  3. or download this
    #!/usr/local/bin/perl
    #TryingIt.pl
    ...
    #The object says: I come from CLASS1.pm
    
    #The object class is CLASS2
    
  4. or download this