Initial commit

This commit is contained in:
2021-11-28 23:08:27 +01:00
commit 3bed67c2b6
16 changed files with 460 additions and 0 deletions

6
src/lib.rs Normal file
View File

@ -0,0 +1,6 @@
pub mod lexer;
pub mod errors;
pub fn test() {
println!("{}", "hi there");
}