|
Zen-C
|
#include "repl.h"#include "ast.h"#include "parser/parser.h"#include "zprep.h"#include <stdio.h>#include <stdlib.h>#include <string.h>#include <termios.h>#include <unistd.h>#include <ctype.h>
Functions | |
| ASTNode * | parse_program (ParserContext *ctx, Lexer *l) |
| Parses a program. | |
| void | run_repl (const char *self_path) |
| Starts the Read-Eval-Print Loop (REPL). | |
| ASTNode * parse_program | ( | ParserContext * | ctx, |
| Lexer * | l | ||
| ) |
Parses a program.

| void run_repl | ( | const char * | self_path | ) |
Starts the Read-Eval-Print Loop (REPL).
| self_path | Path to the executable/ZC compiler itself. |

