Help for this page

Select Code to Download


  1. or download this
    @hash{"one", "two", "three"} = 1 .. 3;
    
  2. or download this
    ($hash{one}, $hash{two}, $hash{three}) = 1 .. 3;
    
  3. or download this
    my @list = @hash{"one", "two", "three"};
    
  4. or download this
    my @list = ($hash{one}, $hash{two}, $hash{three});