X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/188b1ec1b8528e2326791feccc8077e15bd60182..1a691352b57b7338388ff568403495ecb44272eb:/src/main.rs diff --git a/src/main.rs b/src/main.rs index 1111443..d0069e6 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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.