Help for this page

Select Code to Download


  1. or download this
    my %VAR;
    $VAR{SCALAR} = "test scalar";
    ...
    $VAR{HASH}{NAME}[1] = "test hash array 2";
    $VAR{HASH}{NAME}[2]{SOMEHASH} = "test hash array hash 1";
    $VAR{HASH}{NAME}[2]{ANOTHERHASH} = "test hash array hash 2";
    
  2. or download this
    getRefValues( "\$VAR", \%VAR );
    
  3. or download this
    $VAR{HASH}{NAME}[0] = (test hash array 1)
    $VAR{HASH}{NAME}[1] = (test hash array 2)
    ...
    $VAR{HASH}{NAME}[2]{SOMEHASH} = (test hash array hash 1)
    $VAR{ARRAY}[0] = (test array)
    $VAR{SCALAR} = (test scalar)