LIPS-scheme / lips

Scheme based powerful lisp interpreter in JavaScript
https://lips.js.org
Other
427 stars 35 forks source link

some and every should accept more than one list #345

Open jcubic opened 7 months ago

jcubic commented 7 months ago

Those two functions should work similarly to map, filter, and reduce (fold-right).

(every equal? '(1 2 3 4) '(1 2 3 4))
;; ==> #t