Help for this page
our $HSH2 : shared = (); $HSH2{123}{456} = "foo.xml"; # fails
# Why initialise a scalar to an empty list? our $HSH2 :shared = (); ... # Assign a string to an element of the second. $HSH2->{123}->{456} = 'foo.xml';