ys/
ys.rs

1use graplot::Plot;
2
3fn main() {
4    let plot = Plot::new([-4., -2., 1., 4.]);
5    plot.show();
6}