Help for this page

Select Code to Download


  1. or download this
      tie my %$hash, Class::Whatever;
    
      $hash->{foo} = "bar";
    
      $hash->SomeMethod();
    
  2. or download this
      my $obj = new Class::Whatever;
    
      $obj->{foo} = "bar";
    
      $obj->SomeMethod();