ixmrm01 / islands_engine

Erlang back end application for the islands game

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

islands_engine

Erlang back end application for the islands game from book Functional Web Development with Elixir, OTP, and Phoenix

  • Erlang instead of Elixir
  • Syn instead of Registry

Build

Download Islands Engine

$ cd islands_engine
$ rebar3 shell

Test

> {ok, Game} = gen_server:start_link(game, [], []).
> Game ! first.
> {ok, Game} = gen_server:start_link(game, #{test => "test value"}, []).
> gen_server:call(Game, demo_call).
> game:demo_call(Game).
> gen_server:cast(Game, {demo_cast, "another value"}).
> game:demo_cast(Game, "another another value").  

Web interface

Islands Interface

Learn more

About

Erlang back end application for the islands game


Languages

Language:Erlang 100.0%