PreludeList   scheme


Defined in:  https://github.com/digego/extempore/tree/v0.8.9/libs/base/prelude.xtm

Implementation

;; support 'List' abstraction
;; (List 1 2 3 4) etc..
(define (PreludeList . args)
  (if (null? args)
      `(Nil)
      (list 'Cons
            (car args)
            (apply PreludeList (cdr args)))))


Back to Index