Compare commits

..

No commits in common. "c679bed538ca645d06e65848defabe192f59dddf" and "50fea61bb017a621cc42f238c66d6d292ad33349" have entirely different histories.

View file

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