mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-18 21:29:18 +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
|
||||
(case-lambda
|
||||
((e) (range 0 e))
|
||||
((b e) (do ((r ’() (cons e r))
|
||||
((b e) (do ((r '() (cons e r))
|
||||
(e (- e 1) (- e 1)))
|
||||
((< e b) r)))))
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue