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

15 lines
252 B
C

#include <debug.h>
#include "../inheritance.h"
#include "prettyprint.h"
#include "free.h"
#include "inheritance.h"
struct value_inheritance lazy_value_inheritance = {
.prettyprint = lazy_value_prettyprint,
.free = free_lazy_value,
};