8 lines
93 B
Elixir
8 lines
93 B
Elixir
defmodule HelloWorld do
|
|
def hello(name) do
|
|
|
|
"Your implementation goes here"
|
|
|
|
end
|
|
end
|