1 2 3 4 5 6 7 8 9 10 11 12
extern crate art_1978; use art_1978::mix; use art_1978::PrimaryColor; use std::process; fn main() { let red = PrimaryColor::Red; let yellow = PrimaryColor::Yellow; mix(red, yellow); process::exit(0); }