hello/
hello.rs

1// use pest::Parser;
2// use pest::iterators::Pairs;
3use glicol_parser::*;
4
5fn main() {
6    println!("{:?}", get_ast("a: [0.1 => 0.2, 1/2 - 100_ms => 0.3]"));
7    // println!("{:?}", get_ast("o: arrange ~t1 1 ~t2 3"));
8    // println!("{:?}", get_ast("o: envperc 1.0 2.0"));
9    // get_ast(input);
10    // let line = GlicolParser::parse(Rule::block, input);
11    // println!("{:?}", line);
12    // }
13}