Break: Difference between revisions

From EDukeWiki
Jump to navigation Jump to search
No edit summary
m formatting
Line 1: Line 1:
'''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.
 
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 15:15, 10 May 2012

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.