Help for this page

Select Code to Download


  1. or download this
    $test1 = Cluster->new("One");
    print $test1->getClusterName()." ";
    $test2 = Cluster->new("Two");
    print $test1->getClusterName();
    
  2. or download this
    package Cluster;
    
    ...
      return $self{_clusterName};
    }
    1;