petri/src/main.rs
2019-12-21 01:19:11 +01:00

14 lines
170 B
Rust

use crate::parser::parse;
mod graph;
mod parser;
fn main() {
let graph = parse(r"
# hello
hello -> bye
".to_string());
println!("result: {:?}", graph);
}