12 lines
278 B
Rust
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());
|
|
}
|