Skip to content

Instantly share code, notes, and snippets.

@k4200
Created July 13, 2011 11:09
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 k4200/1080110 to your computer and use it in GitHub Desktop.
Save k4200/1080110 to your computer and use it in GitHub Desktop.
FizzBuzz
(1 to 100)foreach{x=>println(if(x%15>0)if(x%5>0)if(x%3>0)x else"Fizz"else"Buzz"else"FizzBuzz")}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment