Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// use evan_toy::{self, kinds::PrimaryColor, Utils::mix};

// pub use
use evan_toy::{PrimaryColor,mix};

fn main(){
    // println!("{}",evan_toy::add_one(1));

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