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