Help for this page

Select Code to Download


  1. or download this
    @hash{sort keys %hash} = values %hash;
    
  2. or download this
    $ perl -MData::Dump -e 'my %x = qw{a 1 b 2 c 3}; dd \%x; @x{sort keys 
    +%x} = values %x; dd \%x'
    
  3. or download this
    { a => 1, b => 2, c => 3 }
    
  4. or download this
    { a => 1, b => 2, c => 3 }
    { a => 1, b => 3, c => 2 }
    { a => 2, b => 3, c => 1 }
    
  5. or download this
    @hash{keys %hash} = values %hash;