Is that module going to work in this situation?
The module's description on CPAN says it doesn't work when creating a hash reference, which is what I'm doing, isn't it?
When I try it with this code:
use Data::Dumper;
use Tie::Autotie 'Tie::IxHash';
tie %data, 'Tie::IxHash';
do "File";
print Dumper \%data;
I get the following output:
$VAR1 = {
'SomeStuff' => {},
'SomeMoreStuff' => {}
};
Which seems to support the module's description that its not going to work in this situation. |