lambda-calc-1/expression/variable/evaluate.h
2025-01-13 20:36:07 -06:00

11 lines
202 B
C

struct expression;
struct environment;
struct booleans;
struct value* variable_expression_evaluate(
struct expression* this,
struct environment* environment,
struct booleans* booleans);