/usr/share/zenlisp/intersection.l is in zenlisp 2013.11.22-2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ; zenlisp example program
; By Nils M Holm, 1998-2007
; See the file LICENSE for conditions of use.
; Compute the intersection of some sets:
; (intersection '#abcd '#bcde '#cdef) => '#cd
(define (intersection . a)
(letrec
((intersection3 (lambda (a b r)
(cond ((null a)
(reverse r))
((member (car a) b)
(intersection3 (cdr a) b (cons (car a) r)))
(t (intersection3 (cdr a) b r))))))
(fold (lambda (a b)
(intersection3 a b ()))
(car a)
a)))
|