projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
*oops* make things actually compile
[rust-101.git]
/
workspace
/
src
/
main.rs
1
#![allow(dead_code, unused_imports, unused_variables, unused_mut)]
2
3
// Only the files imported here will be compiled.
4
mod part00;
5
mod part01;
6
mod part02;
7
mod part03;
8
mod part04;
9
mod part05;
10
mod part06;
11
mod part07;
12
mod part08;
13
mod part09;
14
15
// This decides which part is actually run.
16
fn main() {
17
part00::main();
18
}