implement rgrep, and write part 12 (draft) about it
[rust-101.git] / src / main.rs
index 4fe4215e1333da181745742e0741fa8d6126c16d..8526698a06683e749c110216ebbc312c2376d1fd 100644 (file)
@@ -29,7 +29,7 @@
 // first requirement rules out a garbage collector: Rust can run "bare metal".
 // In fact, Rust rules out more classes of bugs than languages that achieve safety
 // with a GC: Besides dangling pointers and double-free, Rust also prevents issues
-// such as iterator invalidation and race conditions.
+// such as iterator invalidation and data races.
 // 
 // 
 // Getting started
@@ -93,6 +93,7 @@ mod part08;
 mod part09;
 mod part10;
 mod part11;
+mod part12;
 
 // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main`
 // function.