Documentation
1
2
3
4
5
6
7
8
use rainbow_core::Schema;
use std::str::FromStr;

#[test]
fn parse() {
    let schema = Schema::from_str(include_str!("neo.rmb")).unwrap();
    println!("{:#?}", schema);
}