rustfmt, fixed prohibiting set generation

This commit is contained in:
elvis
2025-09-07 17:55:53 +02:00
parent bf8bfd0d17
commit 49051358f0
27 changed files with 6138 additions and 6462 deletions

View File

@ -5,11 +5,13 @@ fn main() {
std::io::stdin().read_line(&mut input).unwrap();
input = input.trim().into();
// let input = "testing/medical.system";
let now = std::time::Instant::now();
match presets::run(input) {
Ok(()) => {},
Err(e) => println!("{e}")
Ok(()) => {}
Err(e) => println!("{e}"),
}
println!("{} milliseconds elapsed", now.elapsed().as_millis());