Handle argument evaluation

This commit is contained in:
2025-08-10 19:54:09 +01:00
parent 624311d04f
commit 662b99a40f
3 changed files with 48 additions and 2 deletions

View File

@@ -7,7 +7,7 @@
#define AM_STACK_SIZE 128U
typedef struct am {
expr_t *argl, *env, *expr, *val;
expr_t *argl, *env, *expr, *unev, *val;
expr_t **sp, *stack[AM_STACK_SIZE];
store_t store;
} am_t;