Packages

An ECS (Entity-Component-System) framework in Elixir

Current section

Files

Jump to
ecstatic lib ecstatic.ex
Raw

lib/ecstatic.ex

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