Files
ReactionSystems/src/main.rs

12 lines
256 B
Rust
Raw Normal View History

use reactionsystems::rsprocess::presets;
2025-07-11 19:36:20 +02:00
fn main() {
// let now = std::time::Instant::now();
// println!("{}", now.elapsed().as_micros());
match presets::run("testing/first.system".into()) {
Ok(_) => {},
Err(e) => {println!("{e}")}
}
2025-05-14 11:42:19 +02:00
}