Skip to content

Instantly share code, notes, and snippets.

@showstopper
Created August 22, 2010 19:47
Show Gist options
  • Save showstopper/544188 to your computer and use it in GitHub Desktop.
Save showstopper/544188 to your computer and use it in GitHub Desktop.
if (myObject == blubType || blahType) {
doTheSame();
}
match myObject {
case blubType || blahType => { doTheSame() }
}
if (myObject == blubType || myObject == blahType) {
doTheSame();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment