×
Welcome to my site, my name is Guillaume Balaine, I am a Software Engineer currently living in Paris. I re-created this site very recently, which is why it is incomplete. In the meantime, please have a look at my social site profiles, or my resume if you are interested.
/** Groovy is sweet */
(1..100).each {
println it%3==0? it%5==0? "FizzBuzz" : "Fizz" : it%5==0? "Buzz" : it
}