start doing the course-part of BigInt
[rust-101.git] / src / main.rs
index 06ad4b216b985ca2ba09d646008560159f58885c..15b798c43ad564dadff7b9cba8b63221b6926fdb 100644 (file)
@@ -70,7 +70,7 @@
 // * [Part 03](part03.html)
 // * [Part 04](part04.html) (WIP)
 // * (to be continued)
-#![allow(dead_code, unused_imports, unused_variables)]
+#![allow(dead_code, unused_imports, unused_variables, unused_mut)]
 mod part00;
 mod part01;
 mod part02;
@@ -78,6 +78,7 @@ mod part03;
 mod part04;
 mod part05;
 mod part06;
+mod part07;
 
 // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main`
 // function.