Help for this page

Select Code to Download


  1. or download this
    $vHash{"101010"}{"S0"} = "sometext";
    
  2. or download this
    $vHash{"101010USED"}{"S0"}{"SYSTEM"} = "sometext";
    
  3. or download this
    ${ $vHash{101010} }{S0} = 'sometext';
    
  4. or download this
    ref $vHash{101010}; # => 'HASH'
    ref $vHash{101010}{S0}; # => undef
    ref $vHash{101010USED}; # => 'HASH'
    ref $vHash{101010USED}{S0}; # => 'HASH'