projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
2db78196815ec87c61e775a8babd05349ef93f9c
[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. Remember to add or enable new
4
// parts here as you progress through the course.
5
mod part00;
6
// mod part01;
7
// mod part02;
8
// mod part03;
9
10
// This decides which part is actually run.
11
fn main() {
12
part00::main();
13
}