switch syntax flexibility

Hello again,

Can it not be arranged in “Rhino” that a switch statement can handle more args in a case:

I tried to use in a calculation:

switch (mycase) {

      case "red", "yellow": Do this
      break;
      case "green" : Do that
}

switch syntax didn’t recofnize that. (Am i right ? :idea: )
So, is it not a good idea to add syntax possibilities like case <50, >= 100:
etc…

Try this:

switch (mycase) {

      case "red":
      case "yellow":
            Do this
            break;
      case "green" :
            Do that;
            break;
}