mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-25 05:42:18 +08:00
9 lines
160 B
Rust
Executable File
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);
|
|
}
|