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
11
12
extern crate mech_core;

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


#[test]
fn create_runtime() {
    let runtime = Runtime::new();
    assert_eq!("", "");
}