Eugene van der Pijll <[EMAIL PROTECTED]> wrote:
> En op 05 mei 2002 sprak Tor Hildrum:
> > foreach (@names) {
> >          print;
> >          last if $_ =~/Dr /;
> >  }
> > (untested as well) :)
> 
> You do know that for and foreach are exact synonyms?

And that $_ is the default variable for //, so the '$_ =~' can 
be deleted?  The straightforward golfish translation for your 
program is something like

    print,/Dr /&&last for@names

-- 
Keith C. Ivey <[EMAIL PROTECTED]>
Washington, DC

Reply via email to