Packages

Library for common Elixir functions.

Current section

Files

Jump to
lo_ex lib lo_ex.ex
Raw

lib/lo_ex.ex

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