272258985cb469e3c343d4144a8d18a5a9fb98c9
[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 }