From: Ralf Jung Date: Wed, 10 Jun 2015 14:20:20 +0000 (+0200) Subject: tweak workspace X-Git-Url: https://git.ralfj.de/rust-101.git/commitdiff_plain/943c00ca03ddc76177b4a16e19e8b831247e03f8?ds=inline;hp=-c tweak workspace --- 943c00ca03ddc76177b4a16e19e8b831247e03f8 diff --git a/workspace/src/main.rs b/workspace/src/main.rs index 0b81cdd..bcf8785 100644 --- a/workspace/src/main.rs +++ b/workspace/src/main.rs @@ -2,6 +2,8 @@ mod part00; mod part01; mod part02; +#[cfg(not(test))] /* If you get warnings about functions not being used on "crate test", adding this attribute will fix them. + It says that the function is only to be compiled if we are *not* compiling for tests. */ fn main() { part00::part_main(); } diff --git a/workspace/src/part03.rs b/workspace/src/part03.rs new file mode 100644 index 0000000..8d1c8b6 --- /dev/null +++ b/workspace/src/part03.rs @@ -0,0 +1 @@ +