summaryrefslogtreecommitdiff
path: root/crates/src/main.rs
blob: 80668f2c1395a17546f05ec3d1b2975b6337df38 (plain) (blame)
1
2
3
4
5
6
7
8
use art::PrimaryColor;
use art::mix;

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