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

8 lines
128 B
C

struct environment;
struct string;
struct value* environment_lookup(
struct environment* this,
struct string* name);