vlad_first_crate 0.1.0

A library for modeling artistic concepts.
Documentation
1
2
3
4
5
6
7
8
use vlad_first_crate::PrimaryColor;
use vlad_first_crate::mix;

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