Continue

From EDukeWiki
Revision as of 05:04, 7 January 2024 by Doom64hunter (talk | contribs) (Created page with "The '''continue''' command jumps execution back to the start of a loop. It should not be used outside of a loop. It is essentially the same as a break statement. Note that as of versions from August 24th 2023, eduke32 will produce a warning when using a break inside a loop. See also exit, return and terminate. Category:EDuke32 specific commands Category:Event manipulation")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

The continue command jumps execution back to the start of a loop. It should not be used outside of a loop.

It is essentially the same as a break statement. Note that as of versions from August 24th 2023, eduke32 will produce a warning when using a break inside a loop.

See also exit, return and terminate.