three_week 0.1.0

three_week rust study
Documentation
1
2
3
4
5
6
7
8
9
10
// use three_week::kinds::PrimaryColor;
// use three_week::utils::mix;

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