wayfarer/lib/switch.ex
James Harton 3403f9d043
All checks were successful
continuous-integration/drone/push Build is passing
chore: Rename switch -> wayfarer.
2023-10-14 11:10:56 +13:00

18 lines
204 B
Elixir

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