X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/29958c0fd33c5e714b52bed79a1832113c43b8d8..342e299d8a8fd79f07960312b73e241c6cc0400e:/src/main.rs?ds=sidebyside diff --git a/src/main.rs b/src/main.rs index cf0cd87..68578fd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -75,6 +75,9 @@ // * [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) +// * [Part 09: Iterators](part09.html) +// * [Part 10: Closures](part10.html) // * (to be continued) #![allow(dead_code, unused_imports, unused_variables, unused_mut)] mod part00; @@ -87,6 +90,7 @@ mod part06; mod part07; mod part08; mod part09; +mod part10; // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main` // function.