14 lines
170 B
Rust
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);
|
|
}
|