Break: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
One (talk | contribs)
No edit summary
No edit summary
Line 1: Line 1:
'''break'''
'''break'''


Used to stop code after the break from executing. Can also be used to exit a [[state]] early.
Used to stop code after the break from executing. Can also be used to exit a [[state]] early. Also used inside [[switch]] blocks to close '''[[case]]''' statements.


[[Category:Duke3D 1.3/1.5 commands]]
[[Category:Duke3D 1.3/1.5 commands]]

Revision as of 12:29, 20 February 2012

break

Used to stop code after the break from executing. Can also be used to exit a state early. Also used inside switch blocks to close case statements.