Help for this page

Select Code to Download


  1. or download this
    d the
    a quick
    ...
    d the
    a lazy
    n dog
    
  2. or download this
    the quick brown fox jumps over the lazy dog
    
  3. or download this
    #!/usr/bin/perl
    use warnings;
    ...
    for my $pos (sort { $seen{$a} <=> $seen{$b} } keys %seen) {
        say "$pos\t$seen{$pos}";
    }
    
  4. or download this
    p    1
    v    1
    n    2
    d    2
    a    3