projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
8afd81ceea094bbea7764ed48b6d012200a5cf86
[rust-101.git]
/
solutions
/
src
/
main.rs
1
extern crate docopt;
2
3
pub mod bigint;
4
pub mod vec;
5
pub mod rgrep;
6
7
pub fn main() {
8
rgrep::main();
9
}