exercism/elixir/bob/bob.exs

9 lines
127 B
Elixir
Raw Normal View History

2016-08-13 23:20:14 +00:00
defmodule Teenager do
def hey(input) do
cond do
true -> raise "Your implementation goes here"
end
end
end