From: Johan Bockgård
Subject: Re: lisp equivalent to c++ continue
Date: 
Message-ID: <yoij8xx3b6il.fsf@linus003.dd.chalmers.se>
"Paul F. Dietz" <·····@dls.net> writes:

> Eric Hanchrow wrote:
>
>> Unfortunately I can't give you detailed advice, but: I suspect the
>> "loop" macro has got some equivalent to C++'s 'continue'.
>
> Amazingly, I don't think it does.

DO/DOLIST/DOTIMES have implicit tagbodies though!


CL-USER> (do ((i 0 (1+ i)))
	     ((> i 9))
	   (when (oddp i)
	     (go :continue))
	   (prin1 i)
	  :continue)
02468
NIL


-- 
Johan Bockgård