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