Help for this page

Select Code to Download


  1. or download this
    #"Cluster.pm"
    use strict;
    ...
      return $self->{_clusterName};
    }
    1;
    
  2. or download this
    use strict;
    use warnings;
    ...
    my $test2 = Cluster->new("Two");
    print $test1->getClusterName()." ";
    print $test2->getClusterName();
    
  3. or download this
    #OUTPUT:
    one One Two
    
  4. or download this