Packages

[DEPRECATED] Use 'statifier' package instead: https://github.com/riddler/statifier

Current section

Files

Jump to
sc lib exstate.ex
Raw

lib/exstate.ex

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