projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
part 13 draft: sorting, external dependencies
[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
}