generated from PlexSheep/baserepo
Compare commits
No commits in common. "c679bed538ca645d06e65848defabe192f59dddf" and "50fea61bb017a621cc42f238c66d6d292ad33349" have entirely different histories.
c679bed538
...
50fea61bb0
1 changed files with 11 additions and 0 deletions
|
@ -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}");
|
||||
}
|
||||
}
|
||||
}
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
|
Reference in a new issue