Skip to content

Instantly share code, notes, and snippets.

@dannluciano
Created April 10, 2011 13:15
Show Gist options
  • Save dannluciano/912330 to your computer and use it in GitHub Desktop.
Save dannluciano/912330 to your computer and use it in GitHub Desktop.
Switch Case for Automatos
switch(node){
case 1:
...
break;
case ...;
...
break;
case 10:
node = 1;
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment