Files
ReactionSystems/src/main.rs

26 lines
523 B
Rust
Raw Normal View History

mod examples;
2025-07-01 19:22:50 +02:00
mod rsprocess;
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
);
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-07-01 19:22:50 +02:00
// examples::stats()?;
2025-07-01 18:00:27 +02:00
examples::freq()?;
2025-07-01 19:22:50 +02:00
// examples::hoop()?;
2025-06-20 17:11:00 +02:00
2025-07-01 19:22:50 +02:00
// examples::target()?;
2025-06-20 17:11:00 +02:00
2025-07-01 19:22:50 +02:00
// examples::run()?;
2025-05-14 11:42:19 +02:00
Ok(())
}