- macros work in the new way (the "right" way?) - added test.py script, with basic test cases. Need to fill out new test builtins.
13 lines
321 B
C
13 lines
321 B
C
|
|
struct value* new_user_lambda_value(
|
|
struct gc* gc,
|
|
struct value* environment,
|
|
struct value* parameters,
|
|
struct value* body);
|
|
|
|
struct value* new_user_lambda_value_given_macro(
|
|
struct gc* gc,
|
|
struct value* environment,
|
|
struct value* parameters,
|
|
struct value* body,
|
|
bool is_macro);
|