Packages

The finite state machine implementations for Elixir.

Current section

Files

Jump to
aasm lib aasm.ex
Raw

lib/aasm.ex

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