part 13 draft: sorting, external dependencies
[rust-101.git] / src / main.rs
index 8526698a06683e749c110216ebbc312c2376d1fd..0290eba8f547ea694b87dc806dedac97f7a8199c 100644 (file)
@@ -80,7 +80,8 @@
 // * [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)]
+#![allow(dead_code, unused_imports, unused_variables, unused_mut, unreachable_code)]
+/* extern crate docopt; */
 mod part00;
 mod part01;
 mod part02;
@@ -94,14 +95,15 @@ mod part09;
 mod part10;
 mod part11;
 mod part12;
+mod part13;
 
 // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main`
 // function.
-
 fn main() {
     part00::main();
 }
 
+
 // Additional material
 // -------------------
 //