lambda-calculus/expression/lambda/inheritance.c
2025-01-13 20:36:07 -06:00

20 lines
448 B
C

#include <debug.h>
#include "../inheritance.h"
#include "prettyprint_errors.h"
#include "prettyprint.h"
#include "evaluate.h"
#include "free.h"
#include "inheritance.h"
struct expression_inheritance lambda_expression_inheritance = {
.prettyprint_errors = lambda_expression_prettyprint_errors,
.prettyprint = lambda_expression_prettyprint,
.evaluate = lambda_expression_evaluate,
.free = free_lambda_expression
};