OverComplicatedCalculator/src/lib.rs

7 lines
82 B
Rust
Raw Normal View History

2021-11-28 23:08:27 +01:00
pub mod lexer;
pub mod errors;
pub fn test() {
println!("{}", "hi there");
}