no terrible cloning!

This commit is contained in:
nora 2022-06-21 13:46:51 +02:00
parent 7fc10f3b6c
commit d12fa25df9
8 changed files with 63 additions and 96 deletions

View file

@ -1,6 +1,11 @@
#![allow(dead_code)]
#![warn(rust_2018_idioms)]
mod pre;
mod token;
pub type Span = std::ops::Range<usize>;
pub fn parse_file(src: &str) {
println!("{src}");
}