fix the main file(s)
authorRalf Jung <post@ralfj.de>
Wed, 24 Jun 2015 18:46:29 +0000 (20:46 +0200)
committerRalf Jung <post@ralfj.de>
Wed, 24 Jun 2015 18:46:29 +0000 (20:46 +0200)
src/main.rs
workspace/src/main.rs

index 9f308064b98bf8f21e16b98900d84231d896c534..d7dbcb06daaffd41b7b2527d92dd6513f040463a 100644 (file)
@@ -95,7 +95,7 @@ mod part09;
 // function.
 
 fn main() {
-    part03::main();
+    part00::main();
 }
 
 // Additional material
index 771cd19fe8902193a75d9a4edef3acebafd442f1..272258985cb469e3c343d4144a8d18a5a9fb98c9 100644 (file)
@@ -1,7 +1,7 @@
 mod part00;
 mod part01;
 mod part02;
-mod part04;
+mod part03;
 
 #[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. */