projects
/
rust-101.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Makefile Magic
[rust-101.git]
/
workspace
/
src
/
main.rs
1
mod part00;
2
mod part01;
3
mod part02;
4
mod part04;
5
6
#[cfg(not(test))] /* If you get warnings about functions not being used on "crate test", adding this attribute will fix them.
7
It says that the function is only to be compiled if we are *not* compiling for tests. */
8
fn main() {
9
part00::main();
10
}