lambda-calculus/expression/parenthesis/struct.h
2025-01-13 20:36:07 -06:00

10 lines
133 B
C

#include "../struct.h"
struct parenthesis_expression
{
struct expression super;
struct expression* subexpression;
};