remove workspace from the repository, instead generate a zipfile to upload
[rust-101.git] / workspace / src / main.rs
1 #![allow(dead_code, unused_imports, unused_variables, unused_mut, unreachable_code)]
2
3 // To get started with the course, open the file `part00.rs` in this workspace as well
4 // as its [fully explained version](https://www.ralfj.de/projects/rust-101/part00.html).
5 // The code below is mostly boilerplate to dispatch into the various parts of the
6 // tutorial.
7
8 // Only the files imported here will be compiled.
9 mod part00;
10 mod part01;
11 mod part02;
12 mod part03;
13 mod part04;
14 mod part05;
15 mod part06;
16 mod part07;
17 mod part08;
18 mod part09;
19 mod part10;
20 mod part11;
21 mod part12;
22 mod part13;
23 mod part14;
24 mod part15;
25 mod part16;
26
27 // This decides which part is actually run.
28 fn main() {
29    part00::main();
30 }