Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/candidtim/cl-game-of-life
Conway's Game of Life in Common Lisp
https://github.com/candidtim/cl-game-of-life
Last synced: 1 day ago
JSON representation
Conway's Game of Life in Common Lisp
- Host: GitHub
- URL: https://github.com/candidtim/cl-game-of-life
- Owner: candidtim
- License: unlicense
- Created: 2024-05-01T14:05:33.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-04T19:33:31.000Z (7 months ago)
- Last Synced: 2024-06-05T15:51:44.820Z (7 months ago)
- Language: Common Lisp
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Conway's Game of Life in Common Lisp
An implementation of [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway's_Game_of_Life)
in Common Lisp, mostly for fun and to have something to practice the Lisp skills on.## Usage
Run with [just](https://github.com/casey/just):
just run [HEIGHT=40] [WIDTH=80] [TICK=0] [FIGURE=gosper-glider-gun] [MAXGEN=10000]
or just load it:
(ql:quickload "cgl")
(cgl/main:main 40 80 "gosper-glider-gun"
:tick-duration-seconds 0
:max-generation 10000)