Compare commits

...

2 commits

Author SHA1 Message Date
c679bed538
Merge branch 'master' of https://git.cscherr.de/PlexSheep/pt
Some checks failed
Cargo Check, Format, Fix and Test / cargo CI (push) Failing after 1m50s
2024-01-15 23:30:39 +01:00
3e2ecf1189
Merge branch 'master' of https://git.cscherr.de/PlexSheep/pt 2024-01-15 23:30:34 +01:00

View file

@ -126,16 +126,5 @@ fn main() {
for part in cli.expression { for part in cli.expression {
expr += ∂ expr += ∂
} }
debug!("exporssion: {}", expr);
let r = Calculator::oneshot(expr);
match r {
Ok(r) => {
println!("{r}");
}
Err(err) => {
error!("Could not compute: {err}");
}
}
} }
//////////////////////////////////////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////////////////////////////////////