1 2 3 4 5 6 7 8 9
use own_art::{mix, PrimaryColor}; fn main() { let color1 = PrimaryColor::Red; let color2 = PrimaryColor::Red; let color3 = mix(color1, color2); println!("{:?}", color3); }