Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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)