switch: Difference between revisions
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 16:08, 5 July 2006
switch exp
Operand types:
exp: Anything
Type of returned value:
Description:
Begins switch form
Example:
switch (_a) do { case 1: {block}; case 2 : {block}; default {block};}