- or download this
$vHash{"101010"}{"S0"} = "sometext";
- or download this
$vHash{"101010USED"}{"S0"}{"SYSTEM"} = "sometext";
- or download this
${ $vHash{101010} }{S0} = 'sometext';
- or download this
ref $vHash{101010}; # => 'HASH'
ref $vHash{101010}{S0}; # => undef
ref $vHash{101010USED}; # => 'HASH'
ref $vHash{101010USED}{S0}; # => 'HASH'