heejae_crate 0.1.1

Sample Project
Documentation
1
2
3
4
5
6
7
8
use heejae_crate::PrimaryColor;
use heejae_crate::mix;

fn main() {
    let color = mix(PrimaryColor::Red, PrimaryColor::Blue);

    println!("MIXED COLOR: {:?}", color);
}