En op 05 mei 2002 sprak Eugene van der Pijll:
> En op 05 mei 2002 sprak Tor Hildrum:
> > What about making a category for the rest of us?
> > Us mortals. Us who write code like this:
> > foreach $person (@names) {
> > print "$person\n";
> > last if $person=~/Dr /;
> > }
> >
> > I know most of you would probably use about 10 strokes for this(which is
> > pretty impressive since @names alone is 6 strokes :) ).
>
> print map a.../Dr /,@names
Oops, doesn't work of course.
print grep//../Dr /,@names
is better.
--
Not that the story need be long, but it will take a long while to make
it short. -- Henry David Thoreau