Skip to content

Instantly share code, notes, and snippets.

@adrienbrault
Created August 27, 2011 10:51
Show Gist options
  • Save adrienbrault/1175241 to your computer and use it in GitHub Desktop.
Save adrienbrault/1175241 to your computer and use it in GitHub Desktop.
{
case 1:
callFirstFunction();
break;
case 2:
callFirstFunction();
break;
case 3:
callFirstFunction();
break;
case 4:
callSecondFunction();
break;
}
{
case 1:
case 2:
case 3:
callFirstFunction();
break;
case 4:
callSecondFunction();
break;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment