*oops* make things actually compile
[rust-101.git] / src / main.rs
index 40bb1257529dcd45c97f73305fe5f058eb3c524a..68578fdb59987d60344f8b5d138eab1a7f5cad2a 100644 (file)
@@ -77,6 +77,7 @@
 // * [Part 07: Operator Overloading, Tests, Formating](part07.html)
 // * [Part 08: Associated Types, Modules](part08.html)
 // * [Part 09: Iterators](part09.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;
 // * (to be continued)
 #![allow(dead_code, unused_imports, unused_variables, unused_mut)]
 mod part00;
@@ -95,7 +96,7 @@ mod part10;
 // function.
 
 fn main() {
 // function.
 
 fn main() {
-    part10::main();
+    part00::main();
 }
 
 // Additional material
 }
 
 // Additional material