lambda-calculus/environment/variable/new.h
2025-01-13 20:36:07 -06:00

9 lines
115 B
C

struct string;
struct value;
struct variable* new_variable(
struct string* name,
struct value* value);