This commit is contained in:
2025-06-16 15:32:04 -07:00
parent e32e941e14
commit 94dfd5ec83
3 changed files with 230 additions and 0 deletions

14
src/lib.rs Normal file
View File

@@ -0,0 +1,14 @@
use std::io::{BufWriter, Write};
use compiler::Compiler;
use parser::Parser;
use safer_ffi::ffi_export;
use tokenizer::Tokenizer;
#[ffi_export]
fn compile_from_string(
input: &safer_ffi::string::String,
output: &mut safer_ffi::string::String,
) -> i32 {
todo!()
}