RosettaCodeData/Task/Conditional-structures/MATLAB/conditional-structures-2.m

9 lines
123 B
Mathematica
Raw Permalink Normal View History

2013-04-10 16:57:12 -07:00
switch x
case 1
disp 'Hello';
case 2
disp 'World';
otherwise
disp 'Skynet Active';
end