Skip to content

Instantly share code, notes, and snippets.

@teivah
Created October 29, 2018 22:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teivah/0fd36961965a50b580ff62b6cf397b9f to your computer and use it in GitHub Desktop.
Save teivah/0fd36961965a50b580ff62b6cf397b9f to your computer and use it in GitHub Desktop.
def matchB(i: Int): String = i match {
case 1 => "one"
case 2 => "two"
case _ => "something else"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment