-
Notifications
You must be signed in to change notification settings - Fork 59
Manual:DIL Manual continue
iamnove edited this page Jan 18, 2023
·
59 revisions
continue:
The continue statement makes you jump to the top
of any loop you're currently in.
Example:
dilbegin foo(); code { while (self.inside) { if (self.position < POSITION_SLEEPING) break; pause; if (self.hp<0) continue; exec("say I own something", self); pause; } } dilend
---~---~---~---~---~---~---~---~---