Current section

Files

Jump to
ex_flow lib ex_flow.ex
Raw

lib/ex_flow.ex

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