Initial tokenizer implementation
This commit is contained in:
parent
f6ac3e60a9
commit
66bdd5f917
7 changed files with 276 additions and 1 deletions
6
src/compiler.rs
Normal file
6
src/compiler.rs
Normal file
|
@ -0,0 +1,6 @@
|
|||
mod token;
|
||||
mod tokenizer;
|
||||
|
||||
pub fn compile(code: &str) {
|
||||
tokenizer::tokenize(code);
|
||||
}
|
Reference in a new issue