elixir-book/weather/lib/weather.ex

19 lines
201 B
Elixir

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