Skip to content

Instantly share code, notes, and snippets.

@dot
Created December 1, 2011 16:05
Show Gist options
  • Save dot/1417830 to your computer and use it in GitHub Desktop.
Save dot/1417830 to your computer and use it in GitHub Desktop.
# require 'coffee-script'
# fb = require './fizzbuzz'
# console.log(fb.fizzbuzz v for v in [1..15])
exports.fizzbuzz = (v)->
f = not(v % 3)
b = not(v % 5)
unless f or b
return v
"#{if f then 'Fizz' else '' }#{if b then 'Buzz' else ''}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment