Help for this page

Select Code to Download


  1. or download this
    my $hashref = { one => 1, two => 2, three => 3 };
    print @{$hashref}{qw/two three/};
    
  2. or download this
    @{$t}{qw/first second third/} = qw(one two three);