function_from_equation 0.1.0

Creates a function from a math equation
Documentation
1
2
3
4
5
6
# This library creates a function from a math equation
## Example
```rs
let x = equation!(10 * x + 3);
assert_eq!(33, x(3));
```