switch case question

so in Arduino, for values of 0-9, you would type this:

switch(testVar){

case '0'...'9'://any numbers from 0-9 are processed the same way.

   do something;

   break;

how do I do the exact same thing in Processing?

Thanks!

Answers

Sign In or Register to comment.