test functions

This commit is contained in:
Arthur Barraux
2025-09-18 13:52:46 +02:00
parent 5818a8ecfc
commit ee2a34a3b1
21 changed files with 1252 additions and 1434 deletions
+13
View File
@@ -0,0 +1,13 @@
#ifndef BLISP_INIT_H_
#define BLISP_INIT_H_
#include "data.h"
void init_builtins(Env *env);
Value *lisp_eval(const char *input);
void lisp_init(void);
void repl(void);
void load_file(const char *filename);
#endif