From 3f5b917c6ced370d940774b51ff89cec0d03c562 Mon Sep 17 00:00:00 2001 From: Akshay Date: Tue, 6 Apr 2021 09:03:37 +0530 Subject: draw grid and pixmap boundary separately --- src/lisp/std.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lisp/std.lisp') diff --git a/src/lisp/std.lisp b/src/lisp/std.lisp index 97c3984..2a042a0 100644 --- a/src/lisp/std.lisp +++ b/src/lisp/std.lisp @@ -47,7 +47,7 @@ (define (product ls) (fold 1 * ls)) (define (enumerate start stop step) - (if (> start stop) + (if (>= start stop) '() (cons start (enumerate (+ start step) stop step)))) -- cgit v1.2.3