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