lib/linex.ex

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

  @doc """
  Hello world.

  ## Examples

      iex> Linex.hello()
      :world

  """
  def hello do
    :world
  end
end