1 // This file defines how to compile loops
6 #include "../environment.h"
7 #include "../stdlib/datatypes.h"
9 Text_t compile_for_loop(env_t *env, ast_t *ast);
10 Text_t compile_repeat(env_t *env, ast_t *ast);
11 Text_t compile_while(env_t *env, ast_t *ast);
12 Text_t compile_skip(env_t *env, ast_t *ast);
13 Text_t compile_stop(env_t *env, ast_t *ast);