tissue 0.0.0

Quickly showcase your machine learning magic! On the tissue, with Rust.
1
2
3
4
5
6
7
8
9
use tissue::{run, Input};

fn main() {
    run(
        |x: Vec<f32>| x.iter().sum(),
        &[Input::Number(234.289), Input::Number(235.6)],
    )
    .expect("Could not run");
}