Skip to content

Instantly share code, notes, and snippets.

@cflewis
Created November 3, 2009 07:11
Show Gist options
  • Save cflewis/224858 to your computer and use it in GitHub Desktop.
Save cflewis/224858 to your computer and use it in GitHub Desktop.
def describe(x: Any) = x match {
case 5 => "five"
case true => "truth"
case "hello" => "hi!"
case Nil => "the empty list"
case _ => "something else"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment