1 // This file defines how to compile 'if' conditionals
6 #include "../environment.h"
7 #include "../stdlib/datatypes.h"
9 Text_t compile_condition(env_t *env, ast_t *ast);
10 Text_t compile_if_statement(env_t *env, ast_t *ast);
11 Text_t compile_if_expression(env_t *env, ast_t *ast);