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