sample2 0.1.0

for demo crates
Documentation
1
2
3
4
5
6
7
8
extern crate sample2;
use sample2::mix;
use sample2::PrimaryColor;
fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;
    mix(red, yellow);
}