exercism/elixir/hello-world/lib/hello_world.ex

10 lines
147 B
Elixir
Raw Permalink Normal View History

2023-12-17 05:26:14 +00:00
defmodule HelloWorld do
@doc """
Simply returns "Hello, World!"
"""
@spec hello :: String.t()
def hello do
"Hello, World!"
end
end