// ANCHOR: here
use art::mix;
use art::PrimaryColor;
fn main() {
// --snip--
// ANCHOR_END: here
let red = PrimaryColor::Red;
let yellow = PrimaryColor::Yellow;
mix(red, yellow);
}