projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
add a README explaining the purpose of the workspace/ folder
[rust-101.git]
/
workspace
/
src
/
main.rs
1
#![allow(dead_code, unused_imports, unused_variables, unused_mut, unreachable_code)]
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
mod part10;
15
mod part11;
16
mod part12;
17
mod part13;
18
mod part14;
19
mod part15;
20
mod part16;
21
22
// This decides which part is actually run.
23
fn main() {
24
part00::main();
25
}