pub fn eval(expression: &str) -> Result<Decimal, String>
Evaluates an expression string with the standard library.
use expr_solver::eval; let result = eval("2 + 3 * 4").unwrap(); assert_eq!(result.to_string(), "14");