1 2 3 4 5 6 7 8 9 10 11
// the art of doing nothing! use test_cargo_publis001::PrimaryColor; use test_cargo_publis001::mix; fn main() { println!("Hello, world!"); let red = PrimaryColor::Red; let yellow = PrimaryColor::Yellow; mix(red, yellow); }