fix the main file(s)
[rust-101.git] / workspace / src / main.rs
1 mod part00;
2 mod part01;
3 mod part02;
4 mod part03;
5
6 #[cfg(not(test))] /* If you get warnings about functions not being used on "crate test", adding this attribute will fix them.
7                      It says that the function is only to be compiled if we are *not* compiling for tests. */
8 fn main() {
9    part00::main();
10 }