Implement +, * and - primitives
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
|
||||
#define AM_STACK_SIZE 128U
|
||||
|
||||
typedef struct {
|
||||
expr_t *env, *expr, *val;
|
||||
typedef struct am {
|
||||
expr_t *argl, *env, *expr, *val;
|
||||
expr_t **sp, *stack[AM_STACK_SIZE];
|
||||
} am_t;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user