Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18


//use art::kinds::PrimaryColor;
//use art::utils::mix;

//extern crate art;

//use crate::art::mix;
//use crate::art::PrimaryColor;

fn main() {

//    let red = PrimaryColor::Red;
//    let yellow = PrimaryColor::Yellow;
//
//    mix(red, yellow);
    println!("Hello, world!");
}