Packages

ExRPG is a general utility for tabletop role-playing games.

Current section

Files

Jump to
ex_rpg lib ex_rpg.ex
Raw

lib/ex_rpg.ex

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