finalize part 08
[rust-101.git] / src / main.rs
index cf0cd8773b79bf9a07c40ad6e7e474399111d99d..abf286e3fc62813b8a7ede46dd3d386325898ffa 100644 (file)
@@ -75,6 +75,7 @@
 // * [Part 05: Clone](part05.html)
 // * [Part 06: Copy, Lifetimes](part06.html)
 // * [Part 07: Operator Overloading, Tests, Formating](part07.html)
+// * [Part 08: Associated Types, Modules](part08.html)
 // * (to be continued)
 #![allow(dead_code, unused_imports, unused_variables, unused_mut)]
 mod part00;
@@ -86,7 +87,7 @@ mod part05;
 mod part06;
 mod part07;
 mod part08;
-mod part09;
+//mod part09;
 
 // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main`
 // function.