771cd19fe8902193a75d9a4edef3acebafd442f1
[rust-101.git] / workspace / src / main.rs
1 mod part00;
2 mod part01;
3 mod part02;
4 mod part04;
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 }