- macros work in the new way (the "right" way?) - added test.py script, with basic test cases. Need to fill out new test builtins.
12 lines
205 B
C
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);
|