Help for this page

Select Code to Download


  1. or download this
    tie my %hash, MyClass; # boring
    
  2. or download this
    my $tied_object = tie my %hash, MyClass; # fun!
    $object->frobcinate(42);
    
  3. or download this
    my $tied_object = tie my %hash, MyClass;
    my $instance = bless \%hash, MyOtherClass;
    $tied_object->frobcinate(42);
    $instance->bedazzle( with => 'evil' );