triblespace 0.18.0

The Triblespace: A lightweight knowledge base for rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use triblespace::prelude::*;

pub mod testmod {
    #![allow(unused)]
    use super::*;
    use triblespace::prelude::valueschemas::*;
    use triblespace::prelude::*;

    attributes! {
        /// First doc line
        /// Second doc line
        "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA" as follows: valueschemas::GenId;
    }
}

fn main() {}