trpl-zh-cn/listings/ch14-more-about-cargo/listing-14-04/src/main.rs
2022-02-06 16:43:51 +08:00

9 lines
160 B
Rust
Executable File

use art::kinds::PrimaryColor;
use art::utils::mix;
fn main() {
let red = PrimaryColor::Red;
let yellow = PrimaryColor::Yellow;
mix(red, yellow);
}