add some @-magic to generate a workspace
[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. Remember to add or enable new
4 // parts here as you progress through the course.
5 mod part00;
6 // mod part01;
7 // mod part02;
8 // mod part03;
9
10 // This decides which part is actually run.
11 fn main() {
12    part00::main();
13 }