Help for this page

Select Code to Download


  1. or download this
    my %statistics;
    undef @statistics{ 1..10 }; # or @statistics{ 1..10 } = (0) x 10
    say join "\n", sort { $a <=> $b } keys %statistics;
    
  2. or download this
    say join "\n", sort { $a <=> $b } keys %{{ map { $_ => 0 } 1..10 }}