assembler: Tokeniser updates, Compiler Engine is back finally

This commit is contained in:
2025-06-25 17:55:34 +01:00
parent 9b9e153500
commit 7565374d5b
6 changed files with 394 additions and 1 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ pub mod logging;
use std::io::Write;
pub fn input(prompt: &str) -> String {
pub fn _input(prompt: &str) -> String {
print!("{prompt}\n > ");
std::io::stdout().flush().expect("Failed to flush stdout");
let mut input = String::new();