split part 11 into two, and explain interior mutability and Cell and RefCell in the...
[rust-101.git] / solutions / src / main.rs
index 8afd81ceea094bbea7764ed48b6d012200a5cf86..0242f495bb928968a74f193b0859d98324d3eff4 100644 (file)
@@ -1,8 +1,15 @@
+// This crate contains solutions to *some* of the exercises, and it bundles
+// the projects that span multiple parts together in one file per project.
+// It is not always up-to-date with the code in the actual course, and mainly
+// serves as draft board for new parts or exercises.
+
 extern crate docopt;
 
 pub mod bigint;
 pub mod vec;
 pub mod rgrep;
+pub mod counter;
+pub mod callbacks;
 
 pub fn main() {
     rgrep::main();