Skip to content

Instantly share code, notes, and snippets.

@zph
Created August 1, 2013 12:30
Show Gist options
  • Save zph/6130902 to your computer and use it in GitHub Desktop.
Save zph/6130902 to your computer and use it in GitHub Desktop.
fizzbuzz = fn
{0, 0, _} -> "FizzBuzz"
{0, _, _} -> "Fizz"
{_, 0, _} -> "Buzz"
{_,_, third} -> "#{third}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment