squared/
squared.rs

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