Skip to content

Instantly share code, notes, and snippets.

@madeleine-chercover-hs
Last active December 14, 2017 23:22
Show Gist options
  • Save madeleine-chercover-hs/2dd36efefbdcacc1acf7cf9a504bce18 to your computer and use it in GitHub Desktop.
Save madeleine-chercover-hs/2dd36efefbdcacc1acf7cf9a504bce18 to your computer and use it in GitHub Desktop.
def match(x: Int): String = x match {
case 1 => "one"
case 2 => "two"
case _ => "whatever"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment