2025-07-01 04:04:13 +02:00
|
|
|
mod examples;
|
2025-07-01 19:22:50 +02:00
|
|
|
mod rsprocess;
|
2025-07-01 04:04:13 +02:00
|
|
|
|
2025-07-01 18:00:27 +02:00
|
|
|
lalrpop_util::lalrpop_mod!(
|
|
|
|
|
#[allow(clippy::uninlined_format_args)] pub grammar, // name of module
|
|
|
|
|
"/rsprocess/grammar.rs" // location of parser
|
|
|
|
|
);
|
2025-06-19 23:48:16 +02:00
|
|
|
|
2025-07-01 04:04:13 +02:00
|
|
|
fn main() -> std::io::Result<()> {
|
|
|
|
|
// let now = std::time::Instant::now();
|
|
|
|
|
// std::thread::sleep(std::time::Duration::new(2, 0));
|
|
|
|
|
// println!("{}", now.elapsed().as_micros());
|
2025-06-19 23:48:16 +02:00
|
|
|
|
2025-07-01 19:22:50 +02:00
|
|
|
// examples::stats()?;
|
2025-06-19 23:48:16 +02:00
|
|
|
|
2025-07-01 18:00:27 +02:00
|
|
|
examples::freq()?;
|
|
|
|
|
|
2025-07-02 07:30:05 +02:00
|
|
|
examples::hoop()?;
|
2025-06-20 17:11:00 +02:00
|
|
|
|
2025-07-02 07:30:05 +02:00
|
|
|
examples::target()?;
|
2025-06-20 17:11:00 +02:00
|
|
|
|
2025-07-02 07:30:05 +02:00
|
|
|
examples::run()?;
|
2025-06-24 18:56:04 +02:00
|
|
|
|
2025-05-14 11:42:19 +02:00
|
|
|
Ok(())
|
|
|
|
|
}
|