1 2 3 4 5 6 7 8
use monntecc_crate::mix; use monntecc_crate::PrimaryColor; fn main() { let red = PrimaryColor::Red; let yellow = PrimaryColor::Yellow; let _ = mix(red, yellow); }