Skip to content

Latest commit

 

History

History
1 lines (1 loc) · 191 Bytes

README.md

File metadata and controls

1 lines (1 loc) · 191 Bytes

Write a reject function such that (reject P L) returns the elements in list L for which predicate P yields #f. Example: (reject (lambda (x) (> x 0)) '(1 -2 3 -4 5 0 8 9)) returns (-2 -4 0).