addf 0.1.0

A fun game where you guess what number the computer has chosen.
Documentation
1
2
3
4
5
6
7
8
use addf::PrimaColor;
use addf::mix;

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