r7rs-small-texinfo

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit e74fc35c83592ff591303b3f87ff6d2684538c79
parent 64873a574789b8dbf716697fc2751f1adaf5de32
Author: Yuval Langer <yuval.langer@gmail.com>
Date:   Wed, 31 Jan 2024 14:46:05 +0200

Fix unmatched parentheses in example Game-of-Life code.

Diffstat:
Mdoc/r7rs-small/r7rs-small.texinfo | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/r7rs-small/r7rs-small.texinfo b/doc/r7rs-small/r7rs-small.texinfo @@ -3218,7 +3218,7 @@ import the base library. (lambda (j k v) (let ((a (life-alive? grid0 j k))) (set! grid1 j k a)))) - (life-print grid1))))) + (life-print grid1))))))) ;; Main program. (import (scheme base)