Create emtpy mod.rs for the parser module
This commit is contained in:
parent
c881ee874a
commit
93bdc998bd
2 changed files with 6 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
mod lexer;
|
mod lexer;
|
||||||
|
mod parser;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
let lexer = lexer::Lexer::new("((abc def + ghi #f))");
|
let lexer = lexer::Lexer::new("((abc def + ghi #f))");
|
||||||
|
|
5
src/parser/mod.rs
Normal file
5
src/parser/mod.rs
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
/* mod.rs
|
||||||
|
* Eryn Wells <eryn@erynwells.me>
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue