Find

(find predicate list) -> value

Returns the first value in list that returns true from the predicate. If nothing is found, returns #f.

Example:

>>(find integer? '('one "two" 3 4 5))
:: 3