Hi all
Just a quick one. If I use a switch...case statement on a variable called "test";
switch (test){
case 1:
//do thing 1
break;
case 2:
//do thing 2
break;
case 3:
//do thing 2
break;
}
as you'll see the result of test being either 2 or 3 results in the same action. Is there a way to enter multiple outputs for a single case, eg
case 1,2:
or similar?