Well, that was easy! Stack limit now working.

This commit is contained in:
Simon Brooke 2026-03-14 16:58:55 +00:00
parent d1ce893633
commit 7f34601523
4 changed files with 14 additions and 3 deletions

View file

@ -12,7 +12,7 @@
(item collection)
"`(member item collection)`: Return `t` if this `item` is a member of this `collection`, else `nil`."
(print (list "In member? item is " item "; collection is " collection))
;; (println)
(println)
(cond
((= 0 (count collection)) nil)
((= item (car collection)) t)