kindling/lib/kindling.ex
2024-02-22 18:24:26 -06:00

18 lines
204 B
Elixir

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