bocchi 0.0.0

Black-box amp simulation engine with neural networks
Documentation
1
2
3
4
5
6
7
8
extern crate bocchi;

fn main() {
    let a = 10;
    let b = 20;
    let c = bocchi::add(a, b);
    println!("{} + {} = {}", a, b, c);
}