test_new_crate 0.1.0

A simple Rust library.
Documentation
1
2
3
4
5
6
7
8
use test_new_crate::{PrimaryColor, mix};

fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;
    let value = (red, yellow);
    println!("Value is {:?}", value);
}