- or download this
tie( %hash, 'Class' );
- or download this
tie( { anon => 'hash' }, 'Class' );
- or download this
my $href = {};
tie( %{$href}, 'Class' );
- or download this
my( %hash ) = ( 'this' => {},
'that' => {} );
tie( %{$hash{'this'}}, 'Class' );
- or download this
my( %hash ) = tie( %otherhash, 'Class' );
- or download this
my $obj = tie( %hash, 'Class' );
$obj->DESTROY;