Disable modules in preparation for refactoring

This way, compile errors from modules further up the dependency chain
don't obscure the important errors
This commit is contained in:
Joscha 2022-01-02 00:36:53 +01:00
parent 017098da34
commit 004aa87153

View file

@ -3,10 +3,10 @@
#![warn(clippy::all)] #![warn(clippy::all)]
#![warn(clippy::use_self)] #![warn(clippy::use_self)]
mod cli; // mod cli;
mod eval; // mod eval;
mod files; mod files;
fn main() { fn main() {
cli::run(); // cli::run();
} }