Skip to content

Instantly share code, notes, and snippets.

@cb372
Created July 12, 2011 11:58
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 cb372/1077837 to your computer and use it in GitHub Desktop.
Save cb372/1077837 to your computer and use it in GitHub Desktop.
FizzBuzz code golf for Shibuya Scala meeting no 42 (http://atnd.org/events/17769)
for(i<-1 to 100){var m=0;if(i%3==0){m=1;print("Fizz")};if(i%5==0){m=1;print("Buzz")};if(m<1)print(i);println} // 110
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment