exercism/elixir/hello-world/hello_world.exs
2016-08-13 18:20:14 -05:00

8 lines
93 B
Elixir

defmodule HelloWorld do
def hello(name) do
"Your implementation goes here"
end
end