lib/simple_xml.ex

defmodule SimpleXml do
  @moduledoc """
  Documentation for `SimpleXml`.
  """

  @doc """
  Hello world.

  ## Examples

      iex> SimpleXml.hello()
      :world

  """
  def hello do
    :world
  end
end