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