summaryrefslogtreecommitdiff
path: root/test.c
diff options
context:
space:
mode:
authorFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-22 19:06:19 +0100
committerFelix Perktold <Felix.Perktold@student.uibk.ac.at>2026-01-22 19:06:19 +0100
commit991d7eaa2a9550c7be0a63d7c1ba7c38c7de2acf (patch)
tree4ce8c6573fdce67c20287260c589f191476f6853 /test.c
parent87cf4ea19323dcac36ba2be7cae2af4341a13344 (diff)
fix test, add entry to README
Diffstat (limited to 'test.c')
-rw-r--r--test.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test.c b/test.c
index c6df833..8f31896 100644
--- a/test.c
+++ b/test.c
@@ -387,8 +387,9 @@ void test_eq_symbols() {
value *expr =
cons(make_symbol("equal?"),
- cons(make_symbol("foo"),
- cons(make_symbol("foo"), make_nil())
+ cons(cons(make_symbol("quote"), cons(make_symbol("foo"), make_nil())),
+ cons(cons(make_symbol("quote"), cons(make_symbol("foo"), make_nil())),
+ make_nil())
)
);