exercism/elixir/bob/bob.exs

9 lines
127 B
Elixir

defmodule Teenager do
def hey(input) do
cond do
true -> raise "Your implementation goes here"
end
end
end