lisp-take-1/evaluate.h
Zander Thannhauser 44fb99b663 .
- macros work in the new way (the "right" way?)
- added test.py script, with basic test cases. Need to fill out new test
  builtins.
2024-12-02 19:33:23 -06:00

12 lines
205 B
C

#include <stdbool.h>
#include <stddef.h>
struct gc;
struct value* evaluate(
struct value* value,
struct value* environment,
struct gc* gc,
bool verbose,
size_t verbose_print_depth);