This project is to run Conway's GameOfLife from one pattern user input. The game is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. One interacts with the Game of Life by creating an initial configuration and observing how it evolves, or, for advanced players, by creating patterns with particular properties.
- Java v10
$ brew cask install java
At present(22/08/2018) it will directly install java 10. Please verify the version if you are using it later.
- Gradle v5.0
To install gradle please refer
$ ./gradlew clean test
$ ./gradlew build
$ ./gradlew clean build jacocoTestReport
$ ./gradlew clean build check
Syarif Hidayatullah