From 004aa8715358c61ce6dbda6a6ac83f29544330a2 Mon Sep 17 00:00:00 2001 From: Joscha Date: Sun, 2 Jan 2022 00:36:53 +0100 Subject: [PATCH] Disable modules in preparation for refactoring This way, compile errors from modules further up the dependency chain don't obscure the important errors --- src/main.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 9053d12..f2a48ef 100644 --- a/src/main.rs +++ b/src/main.rs @@ -3,10 +3,10 @@ #![warn(clippy::all)] #![warn(clippy::use_self)] -mod cli; -mod eval; +// mod cli; +// mod eval; mod files; fn main() { - cli::run(); + // cli::run(); }