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

12 lines
139 B
C

#ifndef STRUCT_LIST_VALUE
#define STRUCT_LIST_VALUE
struct list_value
{
struct value* first;
struct value* rest;
};
#endif