8 lines
145 B
Text
8 lines
145 B
Text
switch( expression )
|
|
case label1
|
|
% code for label1
|
|
case label2
|
|
% code for label2
|
|
otherwise
|
|
% none of the previous
|
|
endswitch
|