Wrapping Up
Explore how to model the core data and behavior of a game in Elixir. This lesson helps you understand the composition of domain entities like coordinates, islands, and boards as simple data structures and functions. Learn why keeping domain logic within the application and enforcing event sequences are crucial before adding complexity like game rules.
We'll cover the following...
We'll cover the following...
The building blocks of the game
We’ve made good progress so far. We modeled the most important building blocks of the game. We can see how coordinates compose into islands and boards. ...