lex string literals, with bug

This commit is contained in:
nora 2021-10-05 22:56:47 +02:00
parent 52d740af9e
commit 70a35e2a10
3 changed files with 47 additions and 3 deletions

View file

@ -1,5 +1,6 @@
mod lex;
mod parse;
mod string;
pub fn run_program(program: &str) {
let lexer = lex::Lexer::lex(program);