Skip to content

Instantly share code, notes, and snippets.

@mje113
Last active August 29, 2015 14:10
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 mje113/a515895bc8e7e998e562 to your computer and use it in GitHub Desktop.
Save mje113/a515895bc8e7e998e562 to your computer and use it in GitHub Desktop.
for (i <- 1 to 100) {
(i % 3, i % 5) match {
case (0, 0) => println("foobar")
case (0, _) => println("foo")
case (_, 0) => println("bar")
case _ => println(i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment