mech-core 0.0.4

The Mech language runtime. It's a small dataflow engine that accepts transactions of changes, and applies them to a compute network.
Documentation
1
2
3
4
5
6
7
8
9
10
extern crate mech_core;

use mech_core::Hasher;
use mech_core::{Core, Transaction, Change};

#[test]
fn create_database() {
    let db = Core::new(1,1);
    assert_eq!("", "");
}