Life is a JALSE example project that plays Conway's Game of Life.
- Any living cell with fewer than two or greater than three living neighbors dies.
- Any living cell with two or three living neighbors stays alive.
- Any dead cell with exactly three neighbors comes alive in the next generation.
- Build using
./gradlew build
(see Building Java Projects with Gradle) - Run using
./gradle run
(See The Application Plugin)
Optionally you can also create an Eclipse project using ./gradlew eclipse
(see The Eclipse Plugins).
See the Wiki for more information.