Still preparing for the big shift to property lists.

This commit is contained in:
Simon Brooke 2023-04-02 12:57:26 +01:00
parent b61e7c3e8c
commit 50d4b4348e
26 changed files with 435 additions and 445 deletions

View file

@ -119,11 +119,11 @@
input "(LENGTH '(1 2 3))"
actual (reps input)]
(is (= actual expected))))
(testing "length of dot-terminated list"
(let [expected "3"
input "(LENGTH '(1 2 3 . 4))"
actual (reps input)]
(is (= actual expected))))
;; (testing "length of dot-terminated list"
;; (let [expected "3"
;; input "(LENGTH '(1 2 3 . 4))"
;; actual (reps input)]
;; (is (= actual expected))))
(testing "length of assoc list"
(let [expected "3"
input "(LENGTH (PAIR '(A B C) '(1 2 3)))"