mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 05:39:17 +02:00
Remove invalid chars
This commit is contained in:
parent
775e18fb21
commit
054ff5adf7
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ It is an error for the arguments not to agree with the `{formals}` of any `{clau
|
||||||
(define range
|
(define range
|
||||||
(case-lambda
|
(case-lambda
|
||||||
((e) (range 0 e))
|
((e) (range 0 e))
|
||||||
((b e) (do ((r ’() (cons e r))
|
((b e) (do ((r '() (cons e r))
|
||||||
(e (- e 1) (- e 1)))
|
(e (- e 1) (- e 1)))
|
||||||
((< e b) r)))))
|
((< e b) r)))))
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue