myart 0.1.0

testing purpose.
Documentation
1
2
3
4
5
6
7
8
9
10
use myart::kinds::PrimaryColor;
use myart::utils::mix;
//use art::mix;
//use art::PrimaryColor;
 
fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;
    mix(red, yellow);
}