1x/
1x.rs

1use graplot::Plot;
2
3fn main() {
4    let plot = Plot::new(|x| 1. / (x+4.));
5    plot.show();
6}