Packages

Lightweight and easy to use API micro-framework.

Current section

Files

Jump to
fl_ex lib fl_ex.ex
Raw

lib/fl_ex.ex

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