X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/3dc9d065dfa259c88b3109717e2c6f6e65a45cc4..63b086dfbd9a5e90700f595c2e6ef7ee10522559:/src/main.rs diff --git a/src/main.rs b/src/main.rs index b093780..bf1c08c 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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 // -------------- // @@ -68,9 +68,10 @@ // * [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.