https://github.com/jackdbd/game-of-life
Conway's Game of Life in Clojure and Quil
https://github.com/jackdbd/game-of-life
quil
Last synced: 7 months ago
JSON representation
Conway's Game of Life in Clojure and Quil
- Host: GitHub
- URL: https://github.com/jackdbd/game-of-life
- Owner: jackdbd
- License: other
- Created: 2020-05-26T08:52:13.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2022-04-26T14:11:13.000Z (over 3 years ago)
- Last Synced: 2025-01-17T21:29:30.120Z (9 months ago)
- Topics: quil
- Language: Clojure
- Homepage:
- Size: 360 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# game-of-life
[](https://travis-ci.org/jackdbd/game-of-life)
Conway's Game of Life implemented in Clojure and animated with [Quil](https://github.com/quil/quil).

## Usage
This project uses [Leiningen](https://leiningen.org/).
Play with:
```sh
lein run
```## Build
Build the [uberjar](https://imagej.net/Uber-JAR):
```sh
lein uberjar
```Then run the executable:
```sh
java -jar target/uberjar/game-of-life-standalone.jar
```## Credits
- [Conway's Game of Life by Christophe Grand](http://clj-me.cgrand.net/2011/08/19/conways-game-of-life/)