X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/7b5af93d756464638204b0b703485712d88d3656..c25f3400060ea1a02f8fa9de69c39fd7b020e8a5:/src/main.rs diff --git a/src/main.rs b/src/main.rs index cf0cd87..abf286e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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.