Initial commit

This commit is contained in:
2025-09-03 03:20:58 -07:00
commit 1e16b4d34e
20 changed files with 455 additions and 0 deletions

5
test/CMakeLists.txt Normal file
View File

@ -0,0 +1,5 @@
add_compile_options(-Wall -Wpedantic)
link_libraries(olisp)
add_executable(test_object test_object.c)
add_test(NAME object COMMAND test_object)

5
test/test_object.c Normal file
View File

@ -0,0 +1,5 @@
#include <lisp/object.h>
int main(int argc, const char **argv) {
return 0;
}