tinylearn 0.1.0

Machine learning in WebAssembly and no_std environments
Documentation
1
2
3
4
5
6
7
#![no_std]

pub mod lm;

pub fn add(a: i32, b: i32) -> i32 {
    a + b
}