Skip to content

Instantly share code, notes, and snippets.

@clartaq
clartaq / life.scm
Created May 1, 2023 14:52
Terminal-based "Game of Life" in R7RS Scheme
;;;
;;; Conway's "Game of Life" in Scheme. This version is R7RS and runs
;;; with Chibi Scheme. "> chibi-scheme life.scm"
;;;
(import (scheme base)
(scheme write)
(only (srfi 18) thread-sleep!) ;; Multi-threading support
(srfi 27)) ;; Source of random bits