Skip to content

Instantly share code, notes, and snippets.

@adolfont
Created October 9, 2020 18:57
Show Gist options
  • Save adolfont/a8f9f303b446d383a49b25bed04efa48 to your computer and use it in GitHub Desktop.
Save adolfont/a8f9f303b446d383a49b25bed04efa48 to your computer and use it in GitHub Desktop.
defmodule Fizzbuzz do
def exec(x) when rem(x, 15) == 0, do: :fizzbuzz
def exec(x) when rem(x, 3) == 0, do: :fizz
def exec(x) when rem(x, 5) == 0, do: :buzz
def exec(x), do: x
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment