write a lot on Copy and Clone. Now part 05 is too long...
[rust-101.git] / src / main.rs
index b0937804de8eea9ed9e049710be33d92fb83dc73..bf1c08c8921729a17e9f6d55f75685e05d9aca11 100644 (file)
@@ -53,7 +53,7 @@
 // You are meant to play around with the source code of the course as you go on, so please
 // fetch it from the [git repository](http://www.ralfj.de/git/rust-101.git) (also available
 // [on GitHub](https://github.com/RalfJung/rust-101)).
-// 
+
 // Course Content
 // --------------
 // 
 // * [Part 01](part01.html)
 // * [Part 02](part02.html)
 // * [Part 03](part03.html)
-// * [Part 04](part04.html) (WIP)
+// * [Part 04](part04.html)
+// * [Part 05](part05.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 +79,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.