daisy/src/main.rs

19 lines
291 B
Rust
Raw Normal View History

2023-03-27 09:47:02 -07:00
pub mod tokens;
2023-03-27 10:54:36 -07:00
pub mod parser;
2023-06-07 14:38:22 -07:00
pub mod command;
2023-04-01 13:50:52 -07:00
pub mod quantity;
//use crate::tokens::Token;
//use crate::parser::ParserError;
2023-03-25 10:32:51 -07:00
//use crate::parser::LineLocation;
2023-03-18 22:16:26 -07:00
mod entry;
use crate::entry::main_e;
2023-03-25 12:14:05 -07:00
2023-03-18 22:16:26 -07:00
fn main() -> Result<(), std::io::Error> {
return main_e();
2023-03-27 10:54:36 -07:00
}
2023-03-27 10:54:36 -07:00
#[cfg(test)]
2023-04-07 18:16:22 -07:00
mod tests;