list-ref   scheme


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

Implementation

(define (list-ref x k)
  (car (list-tail x k)))


Back to Index