windows release optimizations
This commit is contained in:
parent
0b0821a803
commit
05eb1bbaeb
@ -21,9 +21,12 @@ fn main() {
|
|||||||
panic!("Contains NaN, this is probably the result of bad math");
|
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 rust_function = function.parse::<meval::Expr>().unwrap().bind("x").unwrap();
|
||||||
let result = rust_function(9.0);
|
let result = rust_function(5.0);
|
||||||
println!("{}", result);
|
println!("I can also calculate with this function: f(5) = {}", result);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
let width = 7000;
|
let width = 7000;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user