implement rgrep, and write part 12 (draft) about it
[rust-101.git] / workspace / src / main.rs
1 #![allow(dead_code, unused_imports, unused_variables, unused_mut)]
2
3 // Only the files imported here will be compiled.
4 mod part00;
5 mod part01;
6 mod part02;
7 mod part03;
8 mod part04;
9 mod part05;
10 mod part06;
11 mod part07;
12 mod part08;
13 mod part09;
14 mod part10;
15 mod part11;
16 mod part12;
17
18 // This decides which part is actually run.
19 fn main() {
20    part00::main();
21 }