Skip to content

Instantly share code, notes, and snippets.

@tburch
Created July 27, 2012 16:31
Show Gist options
  • Save tburch/3189007 to your computer and use it in GitHub Desktop.
Save tburch/3189007 to your computer and use it in GitHub Desktop.
FizzBuzz
(1 to 100) map { x =>
(x % 3, x % 5) match {
case (0, 0) => ”FizzBuzz”
case (0, _) => “Fizz”
case (_, 0) => “Buzz”
case _ => x.toString
}
} foreach println
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment