Implement till 3.8

This commit is contained in:
2020-12-14 08:45:16 -05:00
parent 5d589e3923
commit 8709aba590
2 changed files with 45 additions and 1 deletions

View File

@@ -58,4 +58,10 @@
(let ((range (- high low)))
(+ low (random range))))
(define (contains x xs)
(cond
((null? xs) #f)
((eq? x (car xs)) #t)
(else (contains x (cdr xs)))))
'util-loaded