scsys 0.2.0-alpha

scsys lays the foundation for the Scattered-Systems ecosystem, delivering critical primitives throughout
1
2
3
4
5
6
7
8
9
#[cfg(test)]
#[test]
fn lib_compiles() {
    let f = |i: usize| i * i;

    assert_eq!(f(2), 4);
    assert_eq!(f(3), 9);
    assert_ne!(f(2), 3);
}