1 2 3 4 5 6 7 8 9
use art_concepts::mix; use art_concepts::PrimaryColor; fn main() { //println!("Hello, world!"); let red = PrimaryColor::Red; let yellow = PrimaryColor::Yellow; mix(red, yellow); }