aboutsummaryrefslogtreecommitdiff
path: root/src/lisp/std.lisp
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-04-06 04:33:37 +0100
committerAkshay <[email protected]>2021-04-06 04:33:37 +0100
commit3f5b917c6ced370d940774b51ff89cec0d03c562 (patch)
treea43b39ca9c3e5384b0752b5f140c1eaf916b460c /src/lisp/std.lisp
parent931d256d62a1a20c8ba8a8b6726fb1d7167f1d68 (diff)
draw grid and pixmap boundary separately
Diffstat (limited to 'src/lisp/std.lisp')
-rw-r--r--src/lisp/std.lisp2
1 files changed, 1 insertions, 1 deletions
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 @@
47(define (product ls) (fold 1 * ls)) 47(define (product ls) (fold 1 * ls))
48 48
49(define (enumerate start stop step) 49(define (enumerate start stop step)
50 (if (> start stop) 50 (if (>= start stop)
51 '() 51 '()
52 (cons start 52 (cons start
53 (enumerate (+ start step) stop step)))) 53 (enumerate (+ start step) stop step))))