test_my_create_to_publish 0.1.0

this is a test to publish a crate, this is for my learning only.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// use my_crate::{kinds::PrimaryColor, utils::mix};

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

use test_my_create_to_publish::{PrimaryColor, mix};

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