[Solved] Skip & Continue
Posted: Wed Apr 18, 2012 2:54 am
I would be nice to have a feature "Skip" that does what "Continue" does and then "Continue" sets you back into the loop. Well, as long as the loop isn't over. Quick and dirty example...
Code: Select all
; skip code 2 but jump back in for code 3
Repeat
code 1
Skip
code 2
Continue
code 3
Until