didiermis_chapter14 0.1.0

Hello there, this is an example, don't use it
Documentation
1
2
3
4
5
6
7
8
9
10


use didiermis_chapter14::PrimaryColor;
use didiermis_chapter14::mix;

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