Skip to content

Instantly share code, notes, and snippets.

@rphuber
Created March 6, 2017 16:55
Show Gist options
  • Save rphuber/91ef57d409041bc99481e7277b6b1895 to your computer and use it in GitHub Desktop.
Save rphuber/91ef57d409041bc99481e7277b6b1895 to your computer and use it in GitHub Desktop.
do_fizzbuzz = fn
(0, 0, _) -> "Fizzbuzz"
(0, _, _) -> "Fizz"
(_, 0, _) -> "Buzz"
(_, _, a) -> a
end
fizzbuzz = fn(n) -> do_fizzbuzz.(rem(n,3), rem(n,5), n) end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment