All pastes #3184525 Raw Edit

Mine

public unlisted text v1 · immutable
#3184525 ·published 2015-10-07 19:18 UTC
rendered paste body
#!/usr/bin/env perl6

my $dict = '/etc/dictionaries-common/words';

my $fh = open $dict, :r;
my $words = $fh.slurp-rest;
$fh.close;

for $words -> $word {
    say $word if $word ~~ m :i/ amas /;
}