Help for this page

Select Code to Download


  1. or download this
    
    my %hash1 = (
    ...
            key3 => '',
            key4 => 4
    );
    
  2. or download this
    $hash1{key1}
    $hash1{key2}{key22}
    $hash1{key2}{key23}
    
  3. or download this
    my %hash2 = (
            key1 => "$home_path/relative_path",
    ...
            key3 => '',
            key4 => 4
    );
    
  4. or download this
    @list = ('key1','key2:key22','key2:key23');