init
This commit is contained in:
15
src/main.rs
Normal file
15
src/main.rs
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user