Files
ReactionSystems/src/main.rs
2025-08-20 19:51:03 +02:00

12 lines
278 B
Rust

fn main() {
let now = std::time::Instant::now();
use reactionsystems::rsprocess::presets;
match presets::run("testing/medical.system".into()) {
Ok(()) => {},
Err(e) => {println!("{e}")}
}
println!("{} milliseconds elapsed", now.elapsed().as_millis());
}