pub fn eval_file(path: impl AsRef<str>) -> Result<Decimal, String>
Evaluates an expression from a binary file with the standard library.
use expr_solver::eval_file; let result = eval_file("expr.bin").unwrap();