X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/c3cbdbbd2fff81d2509b22d614343e6ca0250c09..605add03bc0fe32a35fcb41d9019bdc9b306bdae:/src/main.rs diff --git a/src/main.rs b/src/main.rs index b635f7e..e89f2f1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -41,11 +41,13 @@ // * [Part 00](part00.html) // * [Part 01](part01.html) // * [Part 02](part02.html) +// * [Part 03](part03.html) (WIP) // * (to be continued) #![allow(dead_code, unused_imports, unused_variables)] mod part00; mod part01; mod part02; +mod part03; // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main` // function.