Help for this page

Select Code to Download


  1. or download this
    $stats{ scalar( x() ) }++
    
  2. or download this
    $stats{ x() }++
    
  3. or download this
    $stats{ scalar( my @r = x() ) }++
    
  4. or download this
    use strict;
    use warnings;
    ...
    my %stats;
    $stats{ scalar( my @r = x() ) }++ for  1 .. 1000;
    print Dumper( \%stats );
    
  5. or download this
    $VAR1 = {
              '6' => 81,
    ...
              '1' => 123,
              '10' => 117,
              '5' => 108