Help for this page

Select Code to Download


  1. or download this
    use Data::Dump qw(pp);
    use Tie::IxHash;
    tie my(%hash), 'Tie::IxHash', (a => 1, c => 3, b => 2);
    pp \%hash;
    
  2. or download this
    {
      # tied Tie::IxHash
    ...
      b => 2,
      c => 3,
    }