implement rgrep, and write part 12 (draft) about it
[rust-101.git] / solutions / src / main.rs
diff --git a/solutions/src/main.rs b/solutions/src/main.rs
new file mode 100644 (file)
index 0000000..8afd81c
--- /dev/null
@@ -0,0 +1,9 @@
+extern crate docopt;
+
+pub mod bigint;
+pub mod vec;
+pub mod rgrep;
+
+pub fn main() {
+    rgrep::main();
+}
\ No newline at end of file