Help for this page

Select Code to Download


  1. or download this
    my %hash=(
            "outer"=>
            "cool"=>1,
            "Kewl"=> 2,"odd"
    );
    
  2. or download this
    my %hash=(
      "outer", "cool", 1, "Kewl", 2,"odd"
    );
    
  3. or download this
    use Data::Dumper;
    sub test {
    ...
                "Kewl"=>2,"odd"
            )
    );
    
  4. or download this
    $VAR1 = [
              'outer',
    ...
              2,
              'odd'
            ];