Found and fixed a bug I did not previously know about in println.

This commit is contained in:
Simon Brooke 2026-03-18 12:22:12 +00:00
parent 54a99b6796
commit 69b199fecd
4 changed files with 4 additions and 5 deletions

View file

@ -60,6 +60,7 @@ output=`target/psse $1 <<EOF
(set! member?
(lambda
(item collection)
(progn (print (list "In member; collection is:" collection)) (println))
(cond
((nil? collection) nil)
((= item (car collection)) t)