Switch

From EDukeWiki
Revision as of 22:36, 18 July 2006 by DeeperThought (talk | contribs)
Jump to navigation Jump to search

The switch statement in con is similar to that in C.

 switch <gamevar>
   case: <constant>
     <do something>
     break
   case: <constant>
     <do something>
     break
 endswitch