switch: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
 
mNo edit summary
Line 8: Line 8:
'''Operand types:'''
'''Operand types:'''


'''exp''' [[Anything]]
'''exp:''' [[Anything]]


'''Type of returned value:'''
'''Type of returned value:'''

Revision as of 17:08, 5 July 2006


switch exp


Operand types:

exp: Anything

Type of returned value:

Switch Type

Description:

Begins switch form


Example:

switch (_a) do { case 1: {block}; case 2 : {block}; default {block};}