windows release optimizations

This commit is contained in:
fabolous005 2024-01-16 21:01:50 +01:00
parent 0b0821a803
commit 05eb1bbaeb

View File

@ -21,9 +21,12 @@ fn main() {
panic!("Contains NaN, this is probably the result of bad math");
}
println!("{}", function);
let rust_function = function.parse::<meval::Expr>().unwrap().bind("x").unwrap();
let result = rust_function(9.0);
println!("{}", result);
let result = rust_function(5.0);
println!("I can also calculate with this function: f(5) = {}", result);
/*
let width = 7000;