rust_practice 0.1.1

A fun game where you guess what number the computer has chosen.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

#![allow(unused_variables, dead_code, unused_assignments, unused_imports)]

use rust_practice::mix;
use rust_practice::PrimaryColor;

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