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