Hello !
I was trying to do something like that in css:
while (.....) {
...
if (...) continue;
...
};
In "normal" c++ this should go to the beginning ot the loop if the
condition is true. But in css instructions like "continue" and "break"
are ignored and the code that follows is proceded.
How can I overcome this ?
Is there any possibility to jump inside loops ?
--
Mathias Weigt