Skip to content

Instantly share code, notes, and snippets.

@jamiebullock
Created September 3, 2020 17:18
Show Gist options
  • Save jamiebullock/ef5c35514f5ad114c1ac381bf0696747 to your computer and use it in GitHub Desktop.
Save jamiebullock/ef5c35514f5ad114c1ac381bf0696747 to your computer and use it in GitHub Desktop.
Colour Switch
switch (colour)
{
case 'red':
case 'amber':
stop();
break;
case 'green':
case 'flashing amber':
go();
break;
default:
throw 'Invalid colour';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment