sloane.sh/lib/sloane_sh.ex
2024-02-16 16:09:35 -05:00

18 lines
204 B
Elixir

defmodule SloaneSH do
@moduledoc """
Documentation for `SloaneSH`.
"""
@doc """
Hello world.
## Examples
iex> SloaneSH.hello()
:world
"""
def hello do
:world
end
end