Packages

A multi-agent framework for the BEAM (Erlang VM) that provides agent lifecycle management, message passing, discovery, and extensibility for building distributed agent-based systems.

Current section

Files

Jump to
mabeam lib mabeam.ex
Raw

lib/mabeam.ex

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