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
use scsys::core::id::ids::AtomicId;
use scsys::prelude::Message;

fn main() {
    let id = AtomicId::new();
    println!("{}\n{}", id.clone(), id.to_string());
    println!("{:?}", Message::<String>::default());
}