N
nomail1983
I would like to write:
for each ...
if ... then continue
... rest of for loop ...
next ...
Of course, I could write:
for each ...
if not ... then
... rest of for loop ...
end if
next ...
But I prefer the style of the first form.
for each ...
if ... then continue
... rest of for loop ...
next ...
Of course, I could write:
for each ...
if not ... then
... rest of for loop ...
end if
next ...
But I prefer the style of the first form.