Files
ReactionSystems/src/main.rs

26 lines
539 B
Rust
Raw Normal View History

#![allow(unused_imports)]
2025-05-14 11:42:19 +02:00
mod rsprocess;
mod examples;
use std::{hash::Hash, rc::Rc};
2025-06-18 11:28:04 +02:00
use rsprocess::translator::WithTranslator;
lalrpop_util::lalrpop_mod!(#[allow(clippy::uninlined_format_args)] pub grammar, "/rsprocess/grammar.rs");
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());
examples::stats()?;
examples::hoop()?;
2025-06-20 17:11:00 +02:00
examples::target()?;
2025-06-20 17:11:00 +02:00
examples::run()?;
2025-05-14 11:42:19 +02:00
Ok(())
}