Create emtpy mod.rs for the parser module

This commit is contained in:
Eryn Wells 2016-12-29 09:44:38 -05:00
parent c881ee874a
commit 93bdc998bd
2 changed files with 6 additions and 0 deletions

View file

@ -1,4 +1,5 @@
mod lexer;
mod parser;
fn main() {
let lexer = lexer::Lexer::new("((abc def + ghi #f))");

5
src/parser/mod.rs Normal file
View file

@ -0,0 +1,5 @@
/* mod.rs
* Eryn Wells <eryn@erynwells.me>
*/