X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/5f6e02d64e3789115ea4327a045b8ad3c39b1808..ccf679adb3790903849f7d85b970b67582220952:/solutions/src/main.rs diff --git a/solutions/src/main.rs b/solutions/src/main.rs index 8afd81c..be6e3d5 100644 --- a/solutions/src/main.rs +++ b/solutions/src/main.rs @@ -1,8 +1,14 @@ +// This crate contains solutions to *some* of the exercises, and it bundles +// the projects that span multiple parts together in one file per project. +// It is not always up-to-date with the code in the actual course, and mainly +// serves as draft board for new parts or exercises. + extern crate docopt; pub mod bigint; pub mod vec; pub mod rgrep; +pub mod counter; pub fn main() { rgrep::main();