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