Skip to content

Latest commit

 

History

History
1 lines (1 loc) · 193 Bytes

README.md

File metadata and controls

1 lines (1 loc) · 193 Bytes

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