finalize part 11
[rust-101.git] / src / main.rs
index 68578fdb59987d60344f8b5d138eab1a7f5cad2a..4fe4215e1333da181745742e0741fa8d6126c16d 100644 (file)
@@ -78,6 +78,7 @@
 // * [Part 08: Associated Types, Modules](part08.html)
 // * [Part 09: Iterators](part09.html)
 // * [Part 10: Closures](part10.html)
+// * [Part 11: Trait Objects, Box, Rc, Lifetime bounds](part11.html)
 // * (to be continued)
 #![allow(dead_code, unused_imports, unused_variables, unused_mut)]
 mod part00;
@@ -91,6 +92,7 @@ mod part07;
 mod part08;
 mod part09;
 mod part10;
+mod part11;
 
 // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main`
 // function.