open-cypher 0.1.1

A rust library for parsing openCyper queries.
Documentation
1
2
3
4
5
6
7
8
9
use open_cypher::parse;

fn main() {
    let code = "Hello, World;";
    match parse(code) {
        Ok(tree) => println!("TREE={:?}", tree),
        Err(err) => eprintln!("ERROR={}", err),
    }
}