hhh-first-rust 0.1.0

随便写写
Documentation
1
2
3
4
5
6
7
8
9
10
// use hhh_first_rust2::kins::PrimaryColor;
// use hhh_first_rust2::utils::mix;
use hhh_first_rust::PrimaryColor;
use hhh_first_rust::mix;

fn main() {
    let c1 = PrimaryColor::Red;
    let c2 = PrimaryColor::Yellow;
    mix(c1, c2);
}