Skip to content

Instantly share code, notes, and snippets.

@leedm777
Created July 5, 2011 15:33
Show Gist options
  • Save leedm777/1065073 to your computer and use it in GitHub Desktop.
Save leedm777/1065073 to your computer and use it in GitHub Desktop.
FizzBuzz in Scala
// FizzBuzz in Scala
// http://www.codinghorror.com/blog/2007/02/why-cant-programmers-program.html
1 to 100 map {
case x if x % 15 == 0 => "FizzBuzz"
case x if x % 3 == 0 => "Fizz"
case x if x % 5 == 0 => "Buzz"
case x => x
} foreach (println _)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment