cl-interpret, cl-repl:

Move IO builtins into the CLI, so get_line can use repline keybinds.
This commit is contained in:
2025-02-06 21:35:17 -06:00
parent 0e3ba342c4
commit af9c293907
5 changed files with 42 additions and 27 deletions

View File

@@ -5,7 +5,7 @@ use cl_lexer::Lexer;
use cl_parser::Parser;
use repline::{error::ReplResult, prebaked::*};
fn clear() {
pub fn clear() {
println!("{}", ansi::CLEAR_ALL);
banner()
}