ibr4_something 0.1.0

trying out cargo
Documentation
1
2
3
4
5
6
7
8
9
10
use ibr4_something::PrimaryColor;
use ibr4_something::mix;


fn main() {
    let red = PrimaryColor::Red;
    let yellow = PrimaryColor::Yellow;

    mix(red, yellow);
}