File: demo_list_context.pl

package info (click to toggle)
libperl6-slurp-perl 0.051000-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 144 kB
  • sloc: perl: 145; makefile: 2
file content (7 lines) | stat: -rw-r--r-- 126 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
use strict;
use Perl6::Slurp;

for (slurp '/usr/share/dict/words') {
    next unless /([aeiou])\1.*([aeiou])\2/;
    print;
}