Nieminen Mika wrote:
>
> Of course the syntax cannot be
>
> #do
> ...
> #while(...)
>
> since you may want to put a regular #while loop inside the do-while loop.
> Perhaps something like:
>
> #do
> ...
> #dowhile(...)
>
if you have something like
init
calcA
#while
calcB
calcA
#end
you can fold it like this:
init
#while
#if (not first time)
calcB
#end
calcA
#end
I do not see the need for #do/#dowhile
Post a reply to this message
|