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