aboutsummaryrefslogtreecommitdiff
path: root/lib/hope.ex
blob: 7f4e66f22ddb34960dc72d8c386fe72fbbf35635 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
defmodule Hope do
  @moduledoc """
  Documentation for `Hope`.
  """

  @doc """
  Hello world.

  ## Examples

      iex> Hope.hello()
      :world

  """
  def hello do
    :world
  end
end