diff options
| author | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2026-01-22 19:06:19 +0100 |
|---|---|---|
| committer | Felix Perktold <Felix.Perktold@student.uibk.ac.at> | 2026-01-22 19:06:19 +0100 |
| commit | 991d7eaa2a9550c7be0a63d7c1ba7c38c7de2acf (patch) | |
| tree | 4ce8c6573fdce67c20287260c589f191476f6853 | |
| parent | 87cf4ea19323dcac36ba2be7cae2af4341a13344 (diff) | |
fix test, add entry to README
| -rw-r--r-- | README.ORG | 1 | ||||
| -rw-r--r-- | test.c | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -7,3 +7,4 @@ using lex and yacc + [[https://www.bowaggoner.com/writeups/jumpstart/flexbison/jumpstart_flexbison.pdf?utm_source][flex / bison jumpstart]] + [[https://github.com/Robert-van-Engelen/tinylisp/blob/main/tinylisp.pdf][tinylisp.pdf]] + [[https://w3.pppl.gov/info/readline/A_Short_Completion_Example.html][pppl.gov readline]] ++ [[https://web.mit.edu/6.001/6.037/sicp.pdf][SICP]] @@ -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()) ) ); |
