Better error hanlding when parsing, added medical system

fixed grammar
This commit is contained in:
elvis
2025-08-20 19:51:03 +02:00
parent d4ade0d921
commit c58597389d
6 changed files with 432 additions and 45 deletions

View File

@ -2,7 +2,7 @@ fn main() {
let now = std::time::Instant::now();
use reactionsystems::rsprocess::presets;
match presets::run("testing/first.system".into()) {
match presets::run("testing/medical.system".into()) {
Ok(()) => {},
Err(e) => {println!("{e}")}
}