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