exercism/elixir/hello-world/hello_world.exs

8 lines
93 B
Elixir

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