This commit is contained in:
2025-04-05 16:35:42 -04:00
commit a09abf40d8
10 changed files with 764 additions and 0 deletions

15
src/main.rs Normal file
View File

@ -0,0 +1,15 @@
use input::Bitfyre;
use cli::parser;
mod input;
mod eval;
mod diff;
mod cli;
mod map;
fn main() {
if let Some(_args) = parser() {
let mut input = Bitfyre::new();
input.listen();
}
}