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