cl:last   scheme


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

Implementation

(define (cl:last lst n)
  (cl:nthcdr (- (length lst) n) lst))
;@


Back to Index

Similar Entries