A real parser (lalrpop)

This commit is contained in:
Yehuda Katz
2019-05-25 23:54:41 -07:00
parent cd92f579c9
commit b74daa2e60
24 changed files with 2599 additions and 216 deletions

View File

@ -19,6 +19,7 @@ mod stream;
use std::error::Error;
fn main() -> Result<(), Box<Error>> {
pretty_env_logger::init();
futures::executor::block_on(crate::cli::cli())?;
Ok(())
}