test_sk_crate 0.1.0

A fun game where you guess what number the computer has chosen.
Documentation
1
2
3
4
5
6
7
8
9
10
// use art::kinds::PrimaryColor;
// use art::utils::mix;

use test_sk_crate::{mix, kinds::PrimaryColor};

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