Continue: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
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"
 
(No difference)

Latest revision as of 05:04, 7 January 2024

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.