X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/e726c740aaf22cc99aab03063df3854595bc458c..bbab0538d2d0ddfdc0ef3f73e342c2d1f7222835:/src/main.rs diff --git a/src/main.rs b/src/main.rs index 09a16d1..7850a99 100644 --- a/src/main.rs +++ b/src/main.rs @@ -39,11 +39,13 @@ // [the first part](part00.html), or jump directly to where you left off: // // * [Part 00](part00.html) -// * [Part 01](part01.html) (WIP) +// * [Part 01](part01.html) +// * [Part 02](part02.html) (WIP) // * (to be continued) #![allow(dead_code)] mod part00; mod part01; +mod part02; // To actually run the code of some part (after filling in the blanks, if necessary), simply edit the `main` // function below.