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