http://www.perlmonks.org?node_id=136283


in reply to Re: do/redo or for(;;): what's Kosher?
in thread do/redo or for(;;): what's Kosher?

Along similar lines, I sometimes use
until (2 + 2 == 5) { ... }
which evokes eternity beautifully, in my mind.

Replies are listed 'Best First'.
Re: Re: Re: do/redo or for(;;): what's Kosher?
by EyeOpener (Scribe) on Jan 04, 2002 at 23:39 UTC
    Reminds me of a friend of mine (Hendrix fan), who always uses
    
      if (6==9)
    
    as a break condition. Very cool, IMO.