Skip to content

Instantly share code, notes, and snippets.

@jonatasemidio
Created August 23, 2012 17:20
Show Gist options
  • Save jonatasemidio/3438973 to your computer and use it in GitHub Desktop.
Save jonatasemidio/3438973 to your computer and use it in GitHub Desktop.
Implementação do FizzBuzz rápida!
// Implementação rápida! : Veja também a implementação semântica - https://gist.github.com/3438630
fizzbuzz = {it%3==0 & it%5==0 ? 'fizzbuzz' : it%3 == 0 ? 'fizz' : it%5==0 ? 'buzz' : 'Without fizzbuzz!'}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment