popher 0.1.1

This is going to be awesome.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use popher::mix as lol;
use popher::PrimaryColor;
use popher::SecondaryColor;

fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Blue;
    if lol(red, yellow) == SecondaryColor::Orange {
        println!("CORRECT");
    }

}