lisp-take-1/value/quote/struct.h
2024-11-28 18:36:25 -06:00

10 lines
121 B
C

#ifndef STRUCT_QUOTE_VALUE
#define STRUCT_QUOTE_VALUE
struct quote_value
{
struct value* subexpression;
};
#endif