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