OverComplicatedCalculator/src/lib.rs

8 lines
94 B
Rust

pub mod lexer;
pub mod errors;
mod parser;
pub fn test() {
println!("{}", "hi there");
}