Files
ReactionSystems/src/main.rs

12 lines
278 B
Rust
Raw Normal View History

2025-07-11 19:36:20 +02:00
fn main() {
let now = std::time::Instant::now();
2025-08-15 00:32:58 +02:00
use reactionsystems::rsprocess::presets;
match presets::run("testing/medical.system".into()) {
2025-08-15 17:43:22 +02:00
Ok(()) => {},
2025-08-15 00:32:58 +02:00
Err(e) => {println!("{e}")}
}
println!("{} milliseconds elapsed", now.elapsed().as_millis());
2025-05-14 11:42:19 +02:00
}