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