remvoe unused helper function
This commit is contained in:
parent
4676550961
commit
cba4a6ebf5
|
@ -577,13 +577,6 @@
|
||||||
|
|
||||||
(export define-record-type)
|
(export define-record-type)
|
||||||
|
|
||||||
(define (every pred list)
|
|
||||||
(if (null? list)
|
|
||||||
#t
|
|
||||||
(if (pred (car list))
|
|
||||||
(every pred (cdr list))
|
|
||||||
#f)))
|
|
||||||
|
|
||||||
(define (fold f s xs)
|
(define (fold f s xs)
|
||||||
(if (null? xs)
|
(if (null? xs)
|
||||||
s
|
s
|
||||||
|
|
Loading…
Reference in New Issue