lambda-calc-1/environment/declare.h
2025-01-13 20:36:07 -06:00

11 lines
160 B
C

struct environment;
struct string;
struct value;
void environment_declare(
struct environment* this,
struct string* name,
struct value* value);