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