1 2 3 4 5 6 7
use mixing_colours::*; fn main() { let pc = PrimaryColor::Red; let sc = PrimaryColor::Blue; mix(pc, sc); }