Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    my $hashref = {1..20};
    print scalar(keys %$hashref)."\n";
    print length keys %$hashref;
    
  2. or download this
    10
    2