Split tokenizer

This commit is contained in:
2023-03-24 23:06:44 -07:00
parent cafe1c9c64
commit 8430b0d15a
6 changed files with 200 additions and 206 deletions

View File

@ -73,7 +73,7 @@ fn main() -> Result<(), std::io::Error> {
RawTerminal::suspend_raw_mode(&stdout)?;
write!(stdout, "\n")?;
let g = parser::parse(&s);
let g = parser::evaluate(&s);
RawTerminal::activate_raw_mode(&stdout)?;
match g {