#ifndef REPL_H #define REPL_H /** * @brief Starts the Read-Eval-Print Loop (REPL). * * @param self_path Path to the executable/ZC compiler itself. */ void run_repl(const char *self_path); #endif