#%private/steel/stdlib
this module is in the prelude and therefore automatically available when running steel.
filter
Returns new list, keeping elements from lst
which applying pred
to the element
returns #t.
Examples
(filter even? (range 0 5)) ;; '(0 2 4)