Switch

From EDukeWiki
Revision as of 17:34, 30 August 2005 by Plugwash (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