You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
170 B
Rust

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