Add first version of part 14
[rust-101.git] / solutions / src / main.rs
1 // This crate contains solutions to *some* of the exercises, and it bundles
2 // the projects that span multiple parts together in one file per project.
3 // It is not always up-to-date with the code in the actual course, and mainly
4 // serves as draft board for new parts or exercises.
5
6 extern crate docopt;
7
8 pub mod bigint;
9 pub mod vec;
10 pub mod rgrep;
11 pub mod counter;
12
13 pub fn main() {
14     rgrep::main();
15 }