Genius-Self-study 0.1.0

A Rust Practice
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// use release_profile::kinds::PrimaryColor;
// use release_profile::utils::mix;
// The changes inside 'lib.rs' make the following use statements take effect

// The following code is commented out because we want to demonstrate 'crate.io publish'

//use release_profile::mix;
//use release_profile::PrimaryColor;

/*
 * fn main() {
 *   let red = PrimaryColor::Red;
 *   let yellow = PrimaryColor::Yellow;
 *   mix(red, yellow);
 * }
 */
fn main() {}