Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    $hash{'10'} = "'ten'";
    
    print "$_ => $hash{$_}\n" for sort keys %hash;
    
  2. or download this
    01 => 'one'
    010 => 'eight'
    ...
    10 => 'ten'
    7 => seven
    8 => eight