in reply to Object and tied hash all at once?
Try this code
sub tiebless { my %x; tie %x,shift; return bless \%x,shift; }
In Section
Seekers of Perl Wisdom
in reply to Object and tied hash all at once?
sub tiebless { my %x; tie %x,shift; return bless \%x,shift; }