1 2 3 4 5 6 7 8 9 10 11
use rustchar::PrimaryColor; use rustchar::mix; use rustchar::add; fn main() { let red = PrimaryColor::Red; let yellow = PrimaryColor::Yellow; mix(red,yellow); let num = add(3, 4); print!("************ {:?}",num); }