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

  @doc """
  Hello world.

  ## Examples

      iex> Mystic.hello()
      :world

  """
  def hello do
    :world
  end
end