Skip to content

ixmrm01/islands_engine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages