exercism/elixir/bob/bob.exs
2016-08-13 18:20:14 -05:00

9 lines
127 B
Elixir

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