finish part 16
[rust-101.git] / src / main.rs
index 1111443b89b04b19c00c13ec861e4899626f25b2..d0069e67e0a837740f80213a9b8b7f4ffa47cc6b 100644 (file)
@@ -84,8 +84,8 @@
 // * [Part 12: Rc, Interior Mutability, Cell, RefCell](part12.html)
 // * [Part 13: Concurrency, Arc, Send](part13.html)
 // * [Part 14: Slices, Arrays, External Dependencies](part14.html)
-// * [Part 15: Mutex, Interior Mutability (cont.), Sync](part15.html)
-// * (to be continued)
+// * [Part 15: Mutex, Interior Mutability (cont.), RwLock, Sync](part15.html)
+// * [Part 16: Unsafe Rust, Drop](part16.html)
 // 
 #![allow(dead_code, unused_imports, unused_variables, unused_mut, unreachable_code)]
 mod part00;
@@ -104,6 +104,7 @@ mod part12;
 mod part13;
 mod part14;
 mod part15;
+mod part16;
 
 // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main`
 // function.