Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    my $installation1 = Modules::test1->new();
    
    my $installation2 = Modules::test2->new();
    
  2. or download this
    package Modules::test1;
    
    ...
    print "inside new\n";
    
    }
    
  3. or download this
    package Modules::test2;
    
    ...
    print "inside new\n";
    
    }