- macros work in the new way (the "right" way?) - added test.py script, with basic test cases. Need to fill out new test builtins.
35 lines
330 B
C
35 lines
330 B
C
|
|
#include <assert.h>
|
|
|
|
#include <debug.h>
|
|
|
|
/*#include <value/struct.h>*/
|
|
/*#include <value/user_lambda/new.h>*/
|
|
|
|
#include "../defines/BUILTIN_PARAMETER_DECLARATION.h"
|
|
|
|
#include "eval.h"
|
|
|
|
struct value* builtin_eval(
|
|
BUILTIN_PARAMETER_DECLARATION)
|
|
{
|
|
ENTER;
|
|
|
|
TODO;
|
|
|
|
EXIT;
|
|
/* return result;*/
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|