In the 1 month experience I\'ve had with any programming language, I\'ve assumed that switch case conditions would accept anything in the parenthes
switch
case
You can achieve an OR for cases like this:
switch (someChsr) { case 'w': case 'W': // some code for 'w' or 'W' break; case 'x': // etc }
Cases are like a "goto" and multiple gotos can share the same line to start execution.