daisy/src/main.rs

16 lines
196 B
Rust
Raw Normal View History

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;
2023-06-11 13:53:45 -07:00
pub mod evaluate;
2023-04-01 13:50:52 -07:00
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;