X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/c25f3400060ea1a02f8fa9de69c39fd7b020e8a5..342e299d8a8fd79f07960312b73e241c6cc0400e:/src/main.rs diff --git a/src/main.rs b/src/main.rs index abf286e..68578fd 100644 --- a/src/main.rs +++ b/src/main.rs @@ -76,6 +76,8 @@ // * [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,7 +89,8 @@ mod part05; mod part06; mod part07; mod part08; -//mod part09; +mod part09; +mod part10; // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main` // function.