Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    
    @{$p}{qw(One Two Three)} = (1..3);
    print Dumper($p);
    
  2. or download this
    $VAR1 = {
              'Three' => 3,
              'Two' => 2,
              'One' => 1
            };