lambda-calc-1/statement/error/execute.h
2025-01-20 13:40:51 -06:00

12 lines
270 B
C

struct statement;
struct environment;
struct color_factory;
void error_statement_execute(
struct statement* this,
struct environment** environment,
struct booleans* booleans,
struct wcostream* ostream,
bool print_value,
bool print_with_color);