exercism/elixir/hello-world/hello_world.exs

8 lines
93 B
Elixir
Raw Normal View History

2016-08-13 23:20:14 +00:00
defmodule HelloWorld do
def hello(name) do
"Your implementation goes here"
end
end