moody_learning_rust 0.1.0

A library for moody
Documentation
1
2
3
4
5
6
7
8
use moody_learning_rust::PrimaryColor;
use moody_learning_rust::mix;

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