From: ····@unreal.uncom
Subject: Re: lisp equivalent to c++ continue
Date: 
Message-ID: <6geik1lt9r3urplj9rohchcp6l4liosma6@4ax.com>
On Sat, 08 Oct 2005 13:45:07 -0400, retupmoca <·········@dev.null>
wrote:

>More specifically, what is the lisp translation of the continue keyword 
>above?

For the continue keyword to be useful in C, you need some kind of
conditional logic to decide when to invoke it.  If you just invoke it
blindly, you might as well omit the rest of the loop.

In Common Lisp, the way to use conditional logic to continue the loop
at the next iteration is to use the "until" and/or "while" loop
keywords.