Skip to content

Instantly share code, notes, and snippets.

View cb372's full-sized avatar

Chris Birchall cb372

View GitHub Profile
@cb372
cb372 / fizzbuzz.scala
Created July 12, 2011 11:58
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