Help for this page

Select Code to Download


  1. or download this
    use Tie::Hash::Sorted;
    tie my %s_hash, 'Tie::Hash::Sorted';
    print tied( %sorted_data )->Count, "\n";
    
  2. or download this
    my $s_href = tie my %s_hash, 'Tie::Hash::Sorted';
    print "$_\n" for keys %s_hash;
    print $s_href->Count, "\n";