Type errors

This commit is contained in:
2026-01-18 05:49:14 -08:00
parent c0b18cda5a
commit c7af58f674
6 changed files with 99 additions and 3 deletions
+1
View File
@@ -9,6 +9,7 @@ int main(int argc, const char **argv) {
const char BUF[] = "t";
read_stream_init(&s, BUF, sizeof(BUF) - 1);
LispVal *l = read(&s);
CHECK_TYPE(l, TYPE_FIXNUM);
printf("%d\n", l == Qt);
lisp_shutdown();
return 0;