function
boot.janet on line 2153, column 1
(some pred xs)
Returns nil if all xs are false or nil, otherwise returns the result
of the first truthy predicate, (pred x).
(some odd? [2 4 6 8 10])
# => nil
(some even? [1 3 5 7 11 18])
# => true