Help for this page

Select Code to Download


  1. or download this
    for example:                 $_[0]{$1}=$_[1]      
    would roughly translate to:  $self->{foo} = 'bar'
    if the method call was:      $object->foo('bar');
    
  2. or download this
    for example:                 $_[0]{$1}
    would roughly translate to:  return $self->{foo}
    if the method call was:      $object->foo()
    
  3. or download this
    sub DESTROY {}