monntecc_crate 0.1.0

Learn demonstration create
Documentation
1
2
3
4
5
6
7
8
use monntecc_crate::mix;
use monntecc_crate::PrimaryColor;

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