Help for this page

Select Code to Download


  1. or download this
    say join "\n", sort { $a <=> $b } keys %{{ map { $_ => 0 } 1..10 }}
    
  2. or download this
    say for sort { $a <=> $b } keys %{{ map { $_ => 0 } 1..10 }}
    
  3. or download this
    say for sort { $a <=> $b } 1..10;
    
  4. or download this
    say for sort { $a <=> $b } map "$_", 1..10;