cl:or?   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/runtime/scheme.xtm

Implementation

(define (cl:or? . args)
  (cond ((null? args) #f)
  ((car args) #t)
  (else (apply cl:or? (cdr args)))))


Back to Index

Similar Entries