my_crate2 0.1.1

A fun game where you guess what number this is
Documentation
1
2
3
4
5
6
7
8
use my_crate2::PrimaryColor;
use my_crate2::mix;

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