daisy/src/main.rs

33 lines
442 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-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
2023-03-25 12:14:05 -07:00
/*
Greeter ascii art:
2023-03-25 12:14:05 -07:00
###### @@@@@@
# ##@@ @
## #@ @@
2023-03-25 21:38:59 -07:00
@@@@@@@@@@@@@
2023-03-25 12:14:05 -07:00
@@ @# ##
@ @@## #
@@@@@@ ######
Daisy 0.0.0
2023-03-25 12:14:05 -07:00
*/
2023-03-27 10:59:11 -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;